mirror of git://gcc.gnu.org/git/gcc.git
configure.in: Re-apply 2001-06-26 configure change.
* configure.in: Re-apply 2001-06-26 configure change. * configure: Rebuild. From-SVN: r49709
This commit is contained in:
parent
1e41e86681
commit
adb60117d7
|
@ -1,3 +1,8 @@
|
||||||
|
2002-02-12 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Re-apply 2001-06-26 configure change.
|
||||||
|
* configure: Rebuild.
|
||||||
|
|
||||||
2002-02-12 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
2002-02-12 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
||||||
|
|
||||||
Imported GC 6.1 Alpha 3.
|
Imported GC 6.1 Alpha 3.
|
||||||
|
@ -6,7 +11,7 @@
|
||||||
|
|
||||||
2001-02-11 Adam Megacz <adam@xwt.org
|
2001-02-11 Adam Megacz <adam@xwt.org
|
||||||
|
|
||||||
* gcc/boehm-gc/configure.in: support for win32, saner
|
* configure.in: support for win32, saner
|
||||||
cross-compile options
|
cross-compile options
|
||||||
|
|
||||||
2001-02-08 Anthony Green <green@redhat.com>
|
2001-02-08 Anthony Green <green@redhat.com>
|
||||||
|
|
|
@ -2813,18 +2813,8 @@ esac
|
||||||
|
|
||||||
machdep=
|
machdep=
|
||||||
case "$host" in
|
case "$host" in
|
||||||
# alpha_mach_dep.s assumes that pointers are not saved in fp registers.
|
alpha*-*-openbsd*)
|
||||||
# Gcc on a 21264 can spill pointers to fp registers. Oops.
|
machdep="alpha_mach_dep.lo"
|
||||||
# alpha*-*-*)
|
|
||||||
# machdep="alpha_mach_dep.lo"
|
|
||||||
# ;;
|
|
||||||
i?86-*-solaris2.[89]*)
|
|
||||||
cat >> confdefs.h <<\EOF
|
|
||||||
#define SOLARIS25_PROC_VDB_BUG_FIXED 1
|
|
||||||
EOF
|
|
||||||
|
|
||||||
;;
|
|
||||||
alpha-*-openbsd*)
|
|
||||||
if test x"${ac_cv_lib_dl_dlopen}" != xyes ; then
|
if test x"${ac_cv_lib_dl_dlopen}" != xyes ; then
|
||||||
echo "configure: warning: OpenBSD/Alpha without dlopen(). Shared library support is disabled" 1>&2
|
echo "configure: warning: OpenBSD/Alpha without dlopen(). Shared library support is disabled" 1>&2
|
||||||
# Check whether --enable-shared or --disable-shared was given.
|
# Check whether --enable-shared or --disable-shared was given.
|
||||||
|
@ -2851,6 +2841,15 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
alpha*-*-*)
|
||||||
|
machdep="alpha_mach_dep.lo"
|
||||||
|
;;
|
||||||
|
i?86-*-solaris2.[89]*)
|
||||||
|
cat >> confdefs.h <<\EOF
|
||||||
|
#define SOLARIS25_PROC_VDB_BUG_FIXED 1
|
||||||
|
EOF
|
||||||
|
|
||||||
;;
|
;;
|
||||||
mipstx39-*-elf*)
|
mipstx39-*-elf*)
|
||||||
machdep="mips_ultrix_mach_dep.lo"
|
machdep="mips_ultrix_mach_dep.lo"
|
||||||
|
|
|
@ -154,20 +154,19 @@ AC_SUBST(CXXINCLUDES)
|
||||||
|
|
||||||
machdep=
|
machdep=
|
||||||
case "$host" in
|
case "$host" in
|
||||||
# alpha_mach_dep.s assumes that pointers are not saved in fp registers.
|
alpha*-*-openbsd*)
|
||||||
# Gcc on a 21264 can spill pointers to fp registers. Oops.
|
machdep="alpha_mach_dep.lo"
|
||||||
# alpha*-*-*)
|
|
||||||
# machdep="alpha_mach_dep.lo"
|
|
||||||
# ;;
|
|
||||||
i?86-*-solaris2.[[89]]*)
|
|
||||||
AC_DEFINE(SOLARIS25_PROC_VDB_BUG_FIXED)
|
|
||||||
;;
|
|
||||||
alpha-*-openbsd*)
|
|
||||||
if test x"${ac_cv_lib_dl_dlopen}" != xyes ; then
|
if test x"${ac_cv_lib_dl_dlopen}" != xyes ; then
|
||||||
AC_MSG_WARN(OpenBSD/Alpha without dlopen(). Shared library support is disabled)
|
AC_MSG_WARN(OpenBSD/Alpha without dlopen(). Shared library support is disabled)
|
||||||
AM_DISABLE_SHARED
|
AM_DISABLE_SHARED
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
alpha*-*-*)
|
||||||
|
machdep="alpha_mach_dep.lo"
|
||||||
|
;;
|
||||||
|
i?86-*-solaris2.[[89]]*)
|
||||||
|
AC_DEFINE(SOLARIS25_PROC_VDB_BUG_FIXED)
|
||||||
|
;;
|
||||||
mipstx39-*-elf*)
|
mipstx39-*-elf*)
|
||||||
machdep="mips_ultrix_mach_dep.lo"
|
machdep="mips_ultrix_mach_dep.lo"
|
||||||
AC_DEFINE(STACKBASE, __stackbase)
|
AC_DEFINE(STACKBASE, __stackbase)
|
||||||
|
|
Loading…
Reference in New Issue