configure.in: Comment out --enable-c-cpplib stanza.

* configure.in: Comment out --enable-c-cpplib stanza.
	* configure: Regenerate.

From-SVN: r32838
This commit is contained in:
Zack Weinberg 2000-03-30 22:31:37 +00:00 committed by Zack Weinberg
parent 7fa9670848
commit 694f020b13
3 changed files with 243 additions and 249 deletions

View File

@ -1,3 +1,8 @@
2000-03-30 Zack Weinberg <zack@wolery.cumb.org>
* configure.in: Comment out --enable-c-cpplib stanza.
* configure: Regenerate.
Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (store_constructor): Properly compute displacement and

466
gcc/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -225,16 +225,17 @@ if test x$enable_cpplib = xno; then
cpp_main=cccp
fi)
# Link cpplib into the compiler proper, for C/C++/ObjC.
AC_ARG_ENABLE(c-cpplib,
[ --enable-c-cpplib link cpplib directly into C and C++ compilers
(EXPERIMENTAL) (implies --enable-cpplib).],
if test x$enable_c_cpplib != xno; then
extra_c_objs="${extra_c_objs} libcpp.a"
extra_cxx_objs="${extra_cxx_objs} ../libcpp.a"
extra_c_flags="${extra_c_flags} -DUSE_CPPLIB=1"
cpp_main=cppmain
fi)
dnl Disable this for the moment; the library interface is changing.
dnl # Link cpplib into the compiler proper, for C/C++/ObjC.
dnl AC_ARG_ENABLE(c-cpplib,
dnl [ --enable-c-cpplib link cpplib directly into C and C++ compilers
dnl (EXPERIMENTAL) (implies --enable-cpplib).],
dnl if test x$enable_c_cpplib != xno; then
dnl extra_c_objs="${extra_c_objs} libcpp.a"
dnl extra_cxx_objs="${extra_cxx_objs} ../libcpp.a"
dnl extra_c_flags="${extra_c_flags} -DUSE_CPPLIB=1"
dnl cpp_main=cppmain
dnl fi)
# Enable Multibyte Characters for C/C++
AC_ARG_ENABLE(c-mbchar,