diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-02-05 01:38:47 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-05 01:38:47 +0000 |
commit | 22fdd65e5971ec8f15368ba77046ce8c6c3cb329 (patch) | |
tree | 177855d276d1c216598a7ec68ce2bb1412e384a4 /gcc/configure.in | |
parent | 4322eb6c0ee5bac01fbca9846438084d33367120 (diff) | |
download | gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.tar.gz |
Remove V2 C++ library.
* configure.in: Remove --enable-libstdcxx_v3 support.
* Makefile.in (site.exp): Always set HAVE_LIBSTDCXX_V3.
* configure.in: Remove --enable-libstdcxx_v3 support.
* configure: Regenerated.
From-SVN: r39445
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index ac39b4ff2c2..73be99e1ab0 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -151,23 +151,6 @@ if test x$local_prefix = x; then local_prefix=/usr/local fi -# Build a new-libstdc++ system (ie libstdc++-v3) -AC_MSG_CHECKING([for libstdc++ to install]) -AC_ARG_ENABLE(libstdcxx-v3, -[ --enable-libstdcxx-v3 - enable libstdc++-v3 for building and installation], - [enable_libstdcxx_v3="$enableval"], [enable_libstdcxx_v3=yes]) - -if test x$enable_libstdcxx_v3 = xyes; then - AC_MSG_RESULT(v3) - HAVE_LIBSTDCXX_V3=1 - ac_esn=1 -else - AC_MSG_RESULT(v2) - HAVE_LIBSTDCXX_V3=0 - ac_esn=0 -fi - # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only # passed in by the toplevel make and thus we'd get different behavior # depending on where we built the sources. @@ -1599,9 +1582,8 @@ else fi AC_SUBST(GXX_ABI_FLAG) -AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, $ac_esn, +AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, 1, [Define to 1 if you want to enable namespaces (-fhonor-std) by default.]) -AC_SUBST(HAVE_LIBSTDCXX_V3) dnl Very limited version of automake's enable-maintainer-mode |