From 75b9f1b62988292c95e52366cad244c363da1e44 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 4 Jun 1993 02:28:02 +0000 Subject: [PATCH] (INCLUDE_DEFAULTS): Use same order as cccp.c. Add CCC_INCLUDE_DIR with /ansi and /bsd concatenated. From-SVN: r4628 --- gcc/config/nextstep.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h index 7b431a9f801..3fc507a2156 100644 --- a/gcc/config/nextstep.h +++ b/gcc/config/nextstep.h @@ -27,8 +27,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define INCLUDE_DEFAULTS \ { \ { GPLUSPLUS_INCLUDE_DIR, 1}, \ - { GCC_INCLUDE_DIR, 0}, \ { LOCAL_INCLUDE_DIR, 0}, \ + { TOOL_INCLUDE_DIR, 0 }, \ + { GCC_INCLUDE_DIR, 0}, \ + /* These are for fixincludes-fixed ansi/bsd headers \ + which wouldn't be found otherwise. \ + (The use of string catenation here is OK since \ + NeXT's native compiler is derived from GCC.) */ \ + { GCC_INCLUDE_DIR "/ansi", 0 }, \ + { GCC_INCLUDE_DIR "/bsd", 0 }, \ { "/NextDeveloper/Headers", 0}, \ { "/NextDeveloper/Headers/ansi", 0}, \ { "/NextDeveloper/Headers/bsd", 0}, \ -- 2.30.2