mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
86e63d25ec
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
19 lines
884 B
Python
19 lines
884 B
Python
#!/usr/bin/env python
|
|
|
|
# solaris varients of getXXent_r
|
|
conf.CHECK_C_PROTOTYPE('getpwent_r',
|
|
'struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)',
|
|
define='SOLARIS_GETPWENT_R', headers='pwd.h')
|
|
conf.CHECK_C_PROTOTYPE('getgrent_r',
|
|
'struct group *getgrent_r(struct group *src, char *buf, int buflen)',
|
|
define='SOLARIS_GETGRENT_R', headers='grp.h')
|
|
|
|
# the irix varients
|
|
conf.CHECK_C_PROTOTYPE('getpwent_r',
|
|
'struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)',
|
|
define='SOLARIS_GETPWENT_R', headers='pwd.h')
|
|
conf.CHECK_C_PROTOTYPE('getgrent_r',
|
|
'struct group *getgrent_r(struct group *src, char *buf, size_t buflen)',
|
|
define='SOLARIS_GETGRENT_R', headers='grp.h')
|
|
|