4569704bf961d9c7b31f38d457f0a368c30d020d
[samba.git] / lib / replace / system / wscript_configure
1 conf.CHECK_HEADERS('sys/capability.h')
2 conf.CHECK_FUNCS('getpwnam_r getpwuid_r getpwent_r')
3
4 # solaris varients of getXXent_r
5 conf.CHECK_C_PROTOTYPE('getpwent_r',
6                        'struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)',
7                        define='SOLARIS_GETPWENT_R')
8 conf.CHECK_C_PROTOTYPE('getgrent_r',
9                        'struct group *getgrent_r(struct group *src, char *buf, int buflen)',
10                        define='SOLARIS_GETGRENT_R')
11
12 # the irix varients
13 conf.CHECK_C_PROTOTYPE('getpwent_r',
14                        'struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)',
15                        define='SOLARIS_GETPWENT_R')
16 conf.CHECK_C_PROTOTYPE('getgrent_r',
17                        'struct group *getgrent_r(struct group *src, char *buf, size_t buflen)',
18                        define='SOLARIS_GETGRENT_R')
19
20 conf.CHECK_FUNCS('getgrouplist')
21 conf.CHECK_HEADERS('ctype.h locale.h langinfo.h', add_headers=False)
22 conf.CHECK_HEADERS('fnmatch.h locale.h langinfo.h', add_headers=False)
23 conf.CHECK_HEADERS('sys/ipc.h sys/mman.h sys/shm.h', add_headers=False)
24 conf.CHECK_HEADERS('termios.h termio.h sys/termio.h', add_headers=False)