This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [v3] --enable-[libstdcxx]-[debug, pch]


Ack! Missed a bit. Now make check will be fast again...

2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>

	* acinclude.m4 (GLIBCPP_ENABLE_PCH): Fix missed variable.
	* aclocal.m4: Regenerate.
	* configure: Regenerate.

Index: acinclude.m4
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/acinclude.m4,v
retrieving revision 1.251
diff -c -p -r1.251 acinclude.m4
*** acinclude.m4        4 Jul 2003 17:36:35 -0000       1.251
--- acinclude.m4        4 Jul 2003 22:19:41 -0000
*************** enable_libstdcxx_pch=GLIBCPP_ENABLE_PCH_
*** 1428,1434 ****
    AC_MSG_RESULT([$enable_libstdcxx_pch])
   
    AM_CONDITIONAL(GLIBCPP_BUILD_PCH, test "$enable_libstdcxx_pch" = yes)
!   if test "$enable_pch" = yes; then
        glibcpp_PCHFLAGS="-include bits/stdc++.h"
    else
        glibcpp_PCHFLAGS=""
--- 1428,1434 ----
    AC_MSG_RESULT([$enable_libstdcxx_pch])
   
    AM_CONDITIONAL(GLIBCPP_BUILD_PCH, test "$enable_libstdcxx_pch" = yes)
!   if test "$enable_libstdcxx_pch" = yes; then
        glibcpp_PCHFLAGS="-include bits/stdc++.h"
    else
        glibcpp_PCHFLAGS=""


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]