summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Boyce <boyski@users.sourceforge.net>2013-12-27 18:50:38 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2018-03-25 00:16:32 -0700
commit5fb14ee51f849ec86c109bae101ae3f7b7ed7e39 (patch)
treec00a38938444810780d4b2c3258e0523170bda41
parent0860822bb2a1bbc6e40758e2e6413181b26b6b04 (diff)
downloadxorg-util-makedepend-5fb14ee51f849ec86c109bae101ae3f7b7ed7e39.tar.gz
Bumped -I flag limit in makedepend from 64 to 512.
Clearly a limit of 64 -I flags is too low (we hit it); it might be a good style recommendation but shouldn't be a hard limit. 512 is a fairly random replacement value. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/def.h b/def.h
index 59670a9..17ce537 100644
--- a/def.h
+++ b/def.h
@@ -41,7 +41,7 @@ in this Software without prior written authorization from The Open Group.
#define MAXDEFINES 512
#define MAXFILES 2048
#define MAXINCFILES 128 /* "-include" files */
-#define MAXDIRS 64
+#define MAXDIRS 512 /* -I flags */
#define SYMTABINC 10 /* must be > 1 for define() to work right */
#define TRUE 1
#define FALSE 0