summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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