mirror of git://gcc.gnu.org/git/gcc.git
configure.in (AC_CHECK_HEADERS): Check for string.h & stdlib.h.
* configure.in (AC_CHECK_HEADERS): Check for string.h & stdlib.h. * libsupc++/Makefile.am (LTCOMPILE): Add $(DEFS). * Makefile.in, config.h.in, configure: Regenerate. From-SVN: r53166
This commit is contained in:
parent
3d90d2908e
commit
7e90efc403
|
|
@ -1,3 +1,10 @@
|
|||
2002-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* configure.in (AC_CHECK_HEADERS): Check for string.h & stdlib.h.
|
||||
* libsupc++/Makefile.am (LTCOMPILE): Add $(DEFS).
|
||||
|
||||
* Makefile.in, config.h.in, configure: Regenerate.
|
||||
|
||||
2002-05-03 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
PR libstdc++/6549.
|
||||
|
|
|
|||
|
|
@ -711,6 +711,9 @@
|
|||
/* Define if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define if you have the <sys/isa_defs.h> header file. */
|
||||
#undef HAVE_SYS_ISA_DEFS_H
|
||||
|
||||
|
|
@ -720,9 +723,6 @@
|
|||
/* Define if you have the <sys/resource.h> header file. */
|
||||
#undef HAVE_SYS_RESOURCE_H
|
||||
|
||||
/* Define if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -52,6 +52,8 @@ GLIBCPP_ENABLE_SJLJ_EXCEPTIONS
|
|||
GLIBCPP_ENABLE_LIBUNWIND_EXCEPTIONS
|
||||
GLIBCPP_ENABLE_CONCEPT_CHECKS
|
||||
|
||||
# Check for headers necessary for libsupc++ using dyn-string.c/cxa_demangle.c
|
||||
AC_CHECK_HEADERS(string.h stdlib.h)
|
||||
|
||||
if test -n "$with_cross_host" || test x"$build" != x"$host"; then
|
||||
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ dyn-string.o: dyn-string.c
|
|||
|
||||
# LTCOMPILE is copied from LTCXXCOMPILE below.
|
||||
LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared \
|
||||
--mode=compile $(CC) $(INCLUDES) \
|
||||
--mode=compile $(CC) $(DEFS) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -232,7 +232,7 @@ LIBSUPCXX_CXXFLAGS = $(LIBSUPCXX_PICFLAGS)
|
|||
|
||||
# LTCOMPILE is copied from LTCXXCOMPILE below.
|
||||
LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared \
|
||||
--mode=compile $(CC) $(INCLUDES) \
|
||||
--mode=compile $(CC) $(DEFS) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue