From be9dd80f9334800300a80268dbb92cf3fafcfcf8 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 31 Aug 2022 21:55:45 +0200 Subject: Support --disable-fixincludes. Always install limits.h and syslimits.h header files to include folder. When --disable-fixincludes is used, then no system header files are fixed by the tools in fixincludes. Moreover, the fixincludes tools are not built any longer. gcc/ChangeLog: * Makefile.in: Always install limits.h and syslimits.h to include folder. * configure.ac: Assign STMP_FIXINC blank if --disable-fixincludes is used. * configure: Regenerate. --- gcc/configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/configure.ac') diff --git a/gcc/configure.ac b/gcc/configure.ac index 819b490..31ec7d9 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2510,6 +2510,12 @@ then BUILD_LDFLAGS='$(LDFLAGS_FOR_BUILD)' fi + +if test x$enable_fixincludes = xno; +then + STMP_FIXINC='' +fi + # Expand extra_headers to include complete path. # This substitutes for lots of t-* files. extra_headers_list= -- cgit v1.1