diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-11-06 09:15:11 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:44:33 +0100 |
commit | 49cb694041ac726bbff027bc6d6a9ce0ac5e15f9 (patch) | |
tree | b0627fdeb8020936f460895b61fef946c8fa8e67 /source4/lib | |
parent | 70cf786aab06a45cc6f086fb44d5caee2b108369 (diff) | |
download | samba-49cb694041ac726bbff027bc6d6a9ce0ac5e15f9.tar.gz samba-49cb694041ac726bbff027bc6d6a9ce0ac5e15f9.tar.bz2 samba-49cb694041ac726bbff027bc6d6a9ce0ac5e15f9.zip |
r25867: libreplace: solaris has different prototypes for getpwent_r and getgrent_r
metze
(This used to be commit 44250ac6f987ba98e1efe8cd81b4e7eaa8017ed0)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/replace/system/config.m4 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/source4/lib/replace/system/config.m4 b/source4/lib/replace/system/config.m4 index 2b2f76a8e6..6500535982 100644 --- a/source4/lib/replace/system/config.m4 +++ b/source4/lib/replace/system/config.m4 @@ -19,7 +19,39 @@ AC_CHECK_HEADERS(sys/capability.h) # passwd AC_CHECK_HEADERS(grp.h sys/id.h compat.h shadow.h sys/priv.h pwd.h sys/security.h) AC_CHECK_FUNCS(getpwnam_r getpwuid_r getpwent_r) +AC_HAVE_DECL(getpwent_r, [ + #include <unistd.h> + #include <pwd.h> + ]) +AC_VERIFY_C_PROTOTYPE([struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)], + [ + #ifndef HAVE_GETPWENT_R_DECL + #error missing getpwent_r prototype + #endif + return NULL; + ],[ + AC_DEFINE(SOLARIS_GETPWENT_R, 1, [getpwent_r solaris function prototype]) + ],[],[ + #include <unistd.h> + #include <pwd.h> + ]) AC_CHECK_FUNCS(getgrnam_r getgrgid_r getgrent_r) +AC_HAVE_DECL(getgrent_r, [ + #include <unistd.h> + #include <grp.h> + ]) +AC_VERIFY_C_PROTOTYPE([struct group *getgrent_r(struct group *src, char *buf, int buflen)], + [ + #ifndef HAVE_GETGRENT_R_DECL + #error missing getgrent_r prototype + #endif + return NULL; + ],[ + AC_DEFINE(SOLARIS_GETGRENT_R, 1, [getgrent_r solaris function prototype]) + ],[],[ + #include <unistd.h> + #include <grp.h> + ]) # locale AC_CHECK_HEADERS(ctype.h locale.h) |