Commit 75b9f1b6 by Richard Stallman

(INCLUDE_DEFAULTS): Use same order as cccp.c.

Add CCC_INCLUDE_DIR with /ansi and /bsd concatenated.

From-SVN: r4628
parent df6f4086
...@@ -27,8 +27,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -27,8 +27,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define INCLUDE_DEFAULTS \ #define INCLUDE_DEFAULTS \
{ \ { \
{ GPLUSPLUS_INCLUDE_DIR, 1}, \ { GPLUSPLUS_INCLUDE_DIR, 1}, \
{ GCC_INCLUDE_DIR, 0}, \
{ LOCAL_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", 0}, \
{ "/NextDeveloper/Headers/ansi", 0}, \ { "/NextDeveloper/Headers/ansi", 0}, \
{ "/NextDeveloper/Headers/bsd", 0}, \ { "/NextDeveloper/Headers/bsd", 0}, \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment