1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1013 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
from waflib import Options
def configure(conf):
conf.RECURSE('cmocka')
conf.RECURSE('popt')
if not conf.CONFIG_SET('HAVE_GNUTLS_AES_CMAC'):
conf.RECURSE('aesni-intel')
if conf.CONFIG_GET('ENABLE_SELFTEST'):
conf.RECURSE('socket_wrapper')
conf.RECURSE('nss_wrapper')
conf.RECURSE('resolv_wrapper')
conf.RECURSE('uid_wrapper')
if Options.options.with_pam:
conf.RECURSE('pam_wrapper')
def build(bld):
bld.RECURSE('cmocka')
bld.RECURSE('popt')
if not bld.CONFIG_SET('HAVE_GNUTLS_AES_CMAC'):
bld.RECURSE('aesni-intel')
if bld.CONFIG_GET('SOCKET_WRAPPER'):
bld.RECURSE('socket_wrapper')
if bld.CONFIG_GET('NSS_WRAPPER'):
bld.RECURSE('nss_wrapper')
if bld.CONFIG_GET('RESOLV_WRAPPER'):
bld.RECURSE('resolv_wrapper')
if bld.CONFIG_GET('UID_WRAPPER'):
bld.RECURSE('uid_wrapper')
if bld.CONFIG_GET('PAM_WRAPPER'):
bld.RECURSE('pam_wrapper')