This is the mail archive of the
libstdc++@sources.redhat.com
mailing list for the libstdc++ project.
Re: problems with shadow headers
- To: Nathan Myers <ncm at best dot com>
- Subject: Re: problems with shadow headers
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Mon, 24 Jul 2000 10:41:09 -0700 (PDT)
- cc: libstdc++ at sourceware dot cygnus dot com
nathan I've disabled shadow header include-searching till this gets
sorted out. I figured this was better than breaking everybody's build.
Here's how to re-enable the shadow work (automake must be re-run after
this patch.)
2000-07-24 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
* src/Makefile.am (#CSHADOW_INCLUDES): Enable (broken)
cshadow_includes.
Index: src/Makefile.am
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/src/Makefile.am,v
retrieving revision 1.23
diff -c -p -r1.23 Makefile.am
*** Makefile.am 2000/07/24 16:33:59 1.23
--- Makefile.am 2000/07/24 17:39:47
*************** LIBIO_INCLUDES =
*** 68,76 ****
endif
if GLIBCPP_USE_CSHADOW
! CSHADOW_INCLUDES =
! #CSHADOW_INCLUDES = \
! # @CSHADOWFLAGS@ -I$(top_srcdir)/shadow -I$(top_builddir)/cshadow
else
CSHADOW_INCLUDES =
endif
--- 68,76 ----
endif
if GLIBCPP_USE_CSHADOW
! #CSHADOW_INCLUDES =
! CSHADOW_INCLUDES = \
! @CSHADOWFLAGS@ -I$(top_srcdir)/shadow -I$(top_builddir)/cshadow
else
CSHADOW_INCLUDES =
endif
-benjamin