r10377: Save configuration stuff to sconf.cache so it isn't annoyingly run
[Samba.git] / source4 / auth / SConscript
blob557690cfdb2a7a48d48b28a085355b831224c27c
1 Import('hostenv')
3 hostenv.StaticLibrary('auth_sam.c')
4 hostenv.StaticLibrary('auth_anonymous.c')
5 hostenv.StaticLibrary('auth_winbind.c')
6 hostenv.StaticLibrary('auth_domain.c')
7 hostenv.StaticLibrary('auth_developer.c')
8 hostenv.StaticLibrary('auth_unix.c')
10 if hostenv['configure']:
11     conf = hostenv.Configure()
12     have_pam = conf.CheckLibWithHeader('pam', 'security/pam_appl.h', 'c', 'pam_start')
13     conf.Finish()
15 hostenv.StaticLibrary('pam_errors.c')
16 hostenv.StaticLibrary('auth',['auth.c','auth_util.c','auth_sam_reply.c','ntlm_check.c'])
18 SConscript(dirs=['ntlmssp','kerberos','gensec'])