diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-05-10 14:30:37 +0200 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-05-10 14:30:37 +0200 |
commit | ad41732f4a707be8b2b3f622574176958ac4039f (patch) | |
tree | 1dc4c100eea153c1e25dc2406e6ca84fa25888c2 /soltools/mkdepend | |
parent | 9d52734f0bbbcf27f07f1c1e7e84468f85f83139 (diff) |
CWS gnumake2: fixing mkdepend fix for gcc, thanks ause
Diffstat (limited to 'soltools/mkdepend')
-rw-r--r-- | soltools/mkdepend/def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/soltools/mkdepend/def.h b/soltools/mkdepend/def.h index eaa1f506e263..943e81dc0915 100644 --- a/soltools/mkdepend/def.h +++ b/soltools/mkdepend/def.h @@ -60,9 +60,9 @@ in this Software without prior written authorization from the X Consortium. #endif #define MAXDEFINES 512 -#define MAXFILES 1<<16 /* Increased from 512. -mcafee */ - /* Increased from 1024. -mh */ - /* Increased from 2048. -b_michaelsen */ +#define MAXFILES ( 1<<16 ) /* Increased from 512. -mcafee */ + /* Increased from 1024. -mh */ + /* Increased from 2048. -b_michaelsen */ #define MAXDIRS 64 #define SYMHASHSEED 131 /* 131 1313 13131 ... */ #define SYMHASHMEMBERS 64 /* must be 2^x to work right */ |