summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-04 20:27:44 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-04 20:27:44 +0000
commit75713c9da77714484249dca8c6441e8266094bb0 (patch)
tree0fb54795278ee9bb3625ee135f42ff6fb5145d1b
parent849e288b8a466c3bd4c050034d9dba0fe442eaa3 (diff)
20010105
- (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms that don't have NGROUP_MAX.
-rw-r--r--ChangeLog4
-rw-r--r--defines.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 73b4a6973..c69e437f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010105
2 - (bal) Disable groupaccess by setting NGROUP_MAX to 0 for platforms
3 that don't have NGROUP_MAX.
4
120010104 520010104
2 - (bal) I think this is the last of the bsd-*.h that don't belong. 6 - (bal) I think this is the last of the bsd-*.h that don't belong.
3 - (bal) Minor Makefile fix 7 - (bal) Minor Makefile fix
diff --git a/defines.h b/defines.h
index 087ad2af0..51fd7b3e0 100644
--- a/defines.h
+++ b/defines.h
@@ -89,6 +89,10 @@ enum
89# define STDERR_FILENO 2 89# define STDERR_FILENO 2
90#endif 90#endif
91 91
92#ifndef NGROUP_MAX /* Disable groupaccess if NGROUP_MAX is not set */
93#define NGROUP_MAX 0
94#endif
95
92#ifndef O_NONBLOCK /* Non Blocking Open */ 96#ifndef O_NONBLOCK /* Non Blocking Open */
93# define O_NONBLOCK 00004 97# define O_NONBLOCK 00004
94#endif 98#endif