mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 13:09:37 +08:00
configure.in: Avoid [[ by using test and changequote.
* configure.in: Avoid [[ by using test and changequote. Add changequote required by 1999-12-14 change. * configure: Rebuild. From-SVN: r31105
This commit is contained in:
parent
440927ec19
commit
2618c08381
@ -1,3 +1,9 @@
|
||||
1999-12-27 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* configure.in: Avoid [[ by using test and changequote. Add
|
||||
changequote required by 1999-12-14 change.
|
||||
* configure: Rebuild.
|
||||
|
||||
1999-12-27 Clinton Popetz <cpopetz@cygnus.com>
|
||||
|
||||
* config/mips/mips.h: Fix typo from 12/17/99 libgcc2 fix.
|
||||
|
20
gcc/configure
vendored
20
gcc/configure
vendored
@ -877,7 +877,7 @@ fi
|
||||
# Check whether --enable-c-mbchar or --disable-c-mbchar was given.
|
||||
if test "${enable_c_mbchar+set}" = set; then
|
||||
enableval="$enable_c_mbchar"
|
||||
if [ x$enable_c_mbchar != xno ]; then
|
||||
if test x$enable_c_mbchar != xno; then
|
||||
extra_c_flags="${extra_c_flags} -DMULTIBYTE_CHARS=1"
|
||||
fi
|
||||
fi
|
||||
@ -921,7 +921,7 @@ esac
|
||||
# Check whether --enable-objc-gc or --disable-objc-gc was given.
|
||||
if test "${enable_objc_gc+set}" = set; then
|
||||
enableval="$enable_objc_gc"
|
||||
if [ x$enable_objc_gc = xno ]; then
|
||||
if test x$enable_objc_gc = xno; then
|
||||
objc_boehm_gc=''
|
||||
else
|
||||
objc_boehm_gc=1
|
||||
@ -3867,14 +3867,14 @@ for machine in $build $host $target; do
|
||||
xm_file=pa/xm-pahpux.h
|
||||
xmake_file=pa/x-pa-hpux
|
||||
tmake_file=pa/t-pa
|
||||
if [ x$gas = xyes ]
|
||||
if test x$gas = xyes
|
||||
then
|
||||
tm_file="${tm_file} pa/pa-gas.h"
|
||||
fi
|
||||
# if [[ x$enable_threads = x ]]; then
|
||||
# if test x$enable_threads = x; then
|
||||
# enable_threads=$have_pthread_h
|
||||
# fi
|
||||
# if [[ x$enable_threads = xyes ]]; then
|
||||
# if test x$enable_threads = xyes; then
|
||||
# thread_file='dce'
|
||||
# tmake_file="${tmake_file} pa/t-dce-thr"
|
||||
# fi
|
||||
@ -3885,14 +3885,14 @@ for machine in $build $host $target; do
|
||||
tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
|
||||
xm_file=pa/xm-pahpux.h
|
||||
xmake_file=pa/x-pa-hpux
|
||||
if [ x$gas = xyes ]
|
||||
if test x$gas = xyes
|
||||
then
|
||||
tm_file="${tm_file} pa/pa-gas.h"
|
||||
fi
|
||||
# if [[ x$enable_threads = x ]]; then
|
||||
# if test x$enable_threads = x; then
|
||||
# enable_threads=$have_pthread_h
|
||||
# fi
|
||||
# if [[ x$enable_threads = xyes ]]; then
|
||||
# if test x$enable_threads = xyes; then
|
||||
# thread_file='dce'
|
||||
# tmake_file="${tmake_file} pa/t-dce-thr"
|
||||
# fi
|
||||
@ -3984,7 +3984,7 @@ for machine in $build $host $target; do
|
||||
gnu_ld=yes
|
||||
gas=yes
|
||||
elf=yes
|
||||
if [ x$enable_threads = xyes ]; then
|
||||
if test x$enable_threads = xyes; then
|
||||
thread_file='posix'
|
||||
fi
|
||||
;;
|
||||
@ -6305,7 +6305,7 @@ for machine in $build $host $target; do
|
||||
;;
|
||||
alpha*-*-*)
|
||||
case $machine in
|
||||
alphaev678*)
|
||||
alphaev6[78]*)
|
||||
target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
|
||||
;;
|
||||
alphaev6*)
|
||||
|
@ -247,7 +247,7 @@ fi)
|
||||
# Enable Multibyte Characters for C/C++
|
||||
AC_ARG_ENABLE(c-mbchar,
|
||||
[ --enable-c-mbchar Enable multibyte characters for C and C++.],
|
||||
if [[[ x$enable_c_mbchar != xno ]]]; then
|
||||
if test x$enable_c_mbchar != xno; then
|
||||
extra_c_flags="${extra_c_flags} -DMULTIBYTE_CHARS=1"
|
||||
fi)
|
||||
|
||||
@ -286,7 +286,7 @@ esac
|
||||
AC_ARG_ENABLE(objc-gc,
|
||||
[ --enable-objc-gc enable the use of Boehm's garbage collector with
|
||||
the GNU Objective-C runtime.],
|
||||
if [[[ x$enable_objc_gc = xno ]]]; then
|
||||
if test x$enable_objc_gc = xno; then
|
||||
objc_boehm_gc=''
|
||||
else
|
||||
objc_boehm_gc=1
|
||||
@ -1042,14 +1042,14 @@ changequote([,])dnl
|
||||
xm_file=pa/xm-pahpux.h
|
||||
xmake_file=pa/x-pa-hpux
|
||||
tmake_file=pa/t-pa
|
||||
if [[ x$gas = xyes ]]
|
||||
if test x$gas = xyes
|
||||
then
|
||||
tm_file="${tm_file} pa/pa-gas.h"
|
||||
fi
|
||||
# if [[ x$enable_threads = x ]]; then
|
||||
# if test x$enable_threads = x; then
|
||||
# enable_threads=$have_pthread_h
|
||||
# fi
|
||||
# if [[ x$enable_threads = xyes ]]; then
|
||||
# if test x$enable_threads = xyes; then
|
||||
# thread_file='dce'
|
||||
# tmake_file="${tmake_file} pa/t-dce-thr"
|
||||
# fi
|
||||
@ -1060,14 +1060,14 @@ changequote([,])dnl
|
||||
tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
|
||||
xm_file=pa/xm-pahpux.h
|
||||
xmake_file=pa/x-pa-hpux
|
||||
if [[ x$gas = xyes ]]
|
||||
if test x$gas = xyes
|
||||
then
|
||||
tm_file="${tm_file} pa/pa-gas.h"
|
||||
fi
|
||||
# if [[ x$enable_threads = x ]]; then
|
||||
# if test x$enable_threads = x; then
|
||||
# enable_threads=$have_pthread_h
|
||||
# fi
|
||||
# if [[ x$enable_threads = xyes ]]; then
|
||||
# if test x$enable_threads = xyes; then
|
||||
# thread_file='dce'
|
||||
# tmake_file="${tmake_file} pa/t-dce-thr"
|
||||
# fi
|
||||
@ -1159,7 +1159,7 @@ changequote([,])dnl
|
||||
gnu_ld=yes
|
||||
gas=yes
|
||||
elf=yes
|
||||
if [[ x$enable_threads = xyes ]]; then
|
||||
if test x$enable_threads = xyes; then
|
||||
thread_file='posix'
|
||||
fi
|
||||
;;
|
||||
@ -3606,7 +3606,9 @@ changequote([,])dnl
|
||||
;;
|
||||
alpha*-*-*)
|
||||
case $machine in
|
||||
changequote(,)dnl
|
||||
alphaev6[78]*)
|
||||
changequote([,])dnl
|
||||
target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
|
||||
;;
|
||||
alphaev6*)
|
||||
|
Loading…
Reference in New Issue
Block a user