File: wscript_configure

package info (click to toggle)
samba 2%3A4.23.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,088 kB
  • sloc: ansic: 2,007,520; python: 272,673; sh: 72,258; xml: 51,653; perl: 36,094; makefile: 6,353; yacc: 5,323; exp: 1,582; lex: 1,504; cpp: 1,224; awk: 589; java: 119; csh: 58; pascal: 54; sed: 45; asm: 30
file content (18 lines) | stat: -rw-r--r-- 884 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

# solaris variants 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 variants
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')