mirror of
https://github.com/samba-team/samba.git
synced 2025-11-05 04:23:51 +03:00
at every single build. Run 'scons configure=1' or delete sconf.cache to force checks to be re-run. Jelmer, I think this stuff is cached in the .sconf_cache directory but the message is still displayed and it looks like it caches the compiled test object file not the actual result of the test.
13 lines
391 B
Python
13 lines
391 B
Python
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'])
|