Author: nhosoi
Update of /cvs/dirsec/ldapserver/ldap/servers/slapd In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30291/ldap/servers/slapd
Modified Files: slap.h Log Message: Fixing Solaris build 1) NSCONFIG accidentally got a white space (for non-Linux platforms) 2) Solaris needs to include limits.h explicitly
Index: slap.h =================================================================== RCS file: /cvs/dirsec/ldapserver/ldap/servers/slapd/slap.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- slap.h 25 Jan 2006 16:51:39 -0000 1.10 +++ slap.h 28 Feb 2006 21:51:26 -0000 1.11 @@ -91,6 +91,9 @@ #include <string.h> #include <ctype.h> #include <errno.h> +#if defined(SOLARIS) +#include <limits.h> /* for LONG_MAX */ +#endif
/* there's a bug in the dbm code we import (from where?) -- FIXME */ #ifdef LINUX
389-commits@lists.fedoraproject.org