diff options
author | David Boyce <boyski@users.sourceforge.net> | 2013-12-27 18:50:38 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2018-03-25 00:16:32 -0700 |
commit | 5fb14ee51f849ec86c109bae101ae3f7b7ed7e39 (patch) | |
tree | c00a38938444810780d4b2c3258e0523170bda41 | |
parent | 0860822bb2a1bbc6e40758e2e6413181b26b6b04 (diff) |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |