mirror of
https://github.com/samba-team/samba.git
synced 2025-11-09 20:23:51 +03:00
11 lines
320 B
Python
11 lines
320 B
Python
# tastes like -*- python -*-
|
|
|
|
Import('hostenv')
|
|
|
|
conf = Configure(hostenv)
|
|
conf.env['HAVE_EXTERNAL_POPT'] = conf.CheckLibWithHeader('popt', 'popt.h', 'c', 'poptGetArgs(NULL);')
|
|
conf.Finish()
|
|
|
|
popt = hostenv.StaticLibrary('popt', ['findme.c','popt.c','poptconfig.c','popthelp.c','poptparse.c'])
|
|
Export('popt')
|