From 8db177b652cdede2f509d6c96d1c99e875c2d284 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 20 Sep 2005 22:10:40 +0000 Subject: r10366: More scons fixes. Building et, asn1, lex and yacc files sort-of works now (This used to be commit 22f18a84242e5e68a2d57b6d7ff77c089ee7434a) --- source4/auth/SConscript | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source4/auth/SConscript') diff --git a/source4/auth/SConscript b/source4/auth/SConscript index 298092834b..34cff89bb3 100644 --- a/source4/auth/SConscript +++ b/source4/auth/SConscript @@ -6,7 +6,12 @@ hostenv.StaticLibrary('auth_winbind.c') hostenv.StaticLibrary('auth_domain.c') hostenv.StaticLibrary('auth_developer.c') hostenv.StaticLibrary('auth_unix.c') + +conf = hostenv.Configure() +have_pam = conf.CheckLibWithHeader('pam', 'security/pam_appl.h', 'c', 'pam_start') +conf.Finish() + hostenv.StaticLibrary('pam_errors.c') hostenv.StaticLibrary('auth',['auth.c','auth_util.c','auth_sam_reply.c','ntlm_check.c']) -SConscript(dirs=['ntlmssp','kerberos','gensec'],exports='hostenv') +SConscript(dirs=['ntlmssp','kerberos','gensec']) -- cgit