summaryrefslogtreecommitdiff
path: root/xc/config/makedepend/main.c
diff options
context:
space:
mode:
authordawes <dawes>2001-06-14 21:52:36 +0000
committerdawes <dawes>2001-06-14 21:52:36 +0000
commit9d8ac1f4820f6a1984bcc9e4a4151ba9f0acdc1f (patch)
treec337d03f29b9e9b8dbe806c9ada6c9db11559892 /xc/config/makedepend/main.c
parentd7e11f5cb2c191e4478fca7c6b964a6e600decfa (diff)
Import of XFree86 4.1.0X_4_1_0
Diffstat (limited to 'xc/config/makedepend/main.c')
-rw-r--r--xc/config/makedepend/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/xc/config/makedepend/main.c b/xc/config/makedepend/main.c
index b10465fec..abc06b83a 100644
--- a/xc/config/makedepend/main.c
+++ b/xc/config/makedepend/main.c
@@ -20,7 +20,7 @@ used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
-/* $XFree86: xc/config/makedepend/main.c,v 3.19 2001/04/25 16:44:55 tsi Exp $ */
+/* $XFree86: xc/config/makedepend/main.c,v 3.20 2001/04/29 23:25:02 tsi Exp $ */
#include "def.h"
#ifdef hpux
@@ -72,6 +72,7 @@ char *directives[] = {
"elif",
"eject",
"warning",
+ "include_next",
NULL
};
@@ -81,10 +82,12 @@ char *directives[] = {
struct inclist inclist[ MAXFILES ],
*inclistp = inclist,
+ *inclistnext = inclist,
maininclist;
char *filelist[ MAXFILES ];
-char *includedirs[ MAXDIRS + 1 ];
+char *includedirs[ MAXDIRS + 1 ],
+ **includedirsnext = includedirs;
char *notdotdot[ MAXDIRS ];
char *objprefix = "";
char *objsuffix = OBJSUFFIX;