blob: 982120e1bf33cb22fd2a4874f57f11b11e2e31a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Import('hostenv')
if hostenv['configure']:
conf = Configure(hostenv)
#FIXME: conf.CheckBrokenInetNtoa()
for f in ['strtoull','__strtoull','strtouq','strtoll','__strtoll','strtoq',
'seteuid','setresuid','setegid','setresgid']:
conf.CheckFunc(f,'c')
conf.Finish()
hostenv.StaticLibrary('repdir', ['repdir/repdir.c'])
hostenv.StaticLibrary('replace', ['replace.c', 'snprintf.c','dlfcn.c'])
|