summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/SConscript11
-rw-r--r--source4/auth/gensec/SConscript8
-rw-r--r--source4/auth/kerberos/SConscript6
-rw-r--r--source4/auth/ntlmssp/SConscript5
4 files changed, 30 insertions, 0 deletions
diff --git a/source4/auth/SConscript b/source4/auth/SConscript
index b17b8e580b..298092834b 100644
--- a/source4/auth/SConscript
+++ b/source4/auth/SConscript
@@ -1 +1,12 @@
Import('hostenv')
+
+hostenv.StaticLibrary('auth_sam.c')
+hostenv.StaticLibrary('auth_anonymous.c')
+hostenv.StaticLibrary('auth_winbind.c')
+hostenv.StaticLibrary('auth_domain.c')
+hostenv.StaticLibrary('auth_developer.c')
+hostenv.StaticLibrary('auth_unix.c')
+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')
diff --git a/source4/auth/gensec/SConscript b/source4/auth/gensec/SConscript
new file mode 100644
index 0000000000..1e92dd92e3
--- /dev/null
+++ b/source4/auth/gensec/SConscript
@@ -0,0 +1,8 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('gensec',['gensec.c'])
+hostenv.StaticLibrary('gensec_krb5',['gensec_krb5.c'])
+hostenv.StaticLibrary('gensec_gssapi',['gensec_gssapi.c'])
+hostenv.StaticLibrary('gensec_spnego',['spnego.c'])
+hostenv.StaticLibrary('gensec_schannel',['schannel.c','schannel_sign.c'])
+hostenv.StaticLibrary('schanneldb',['schannel_state.c'])
diff --git a/source4/auth/kerberos/SConscript b/source4/auth/kerberos/SConscript
new file mode 100644
index 0000000000..8272f1c24a
--- /dev/null
+++ b/source4/auth/kerberos/SConscript
@@ -0,0 +1,6 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('kerberos',
+ ['kerberos.c','clikrb5.c','kerberos_verify.c',
+ 'kerberos_util.c','kerberos_pac.c','gssapi_parse.c',
+ 'krb5_init_context.c'])
diff --git a/source4/auth/ntlmssp/SConscript b/source4/auth/ntlmssp/SConscript
new file mode 100644
index 0000000000..1fb21c02cd
--- /dev/null
+++ b/source4/auth/ntlmssp/SConscript
@@ -0,0 +1,5 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('gensec_ntlmssp',
+ ['ntlmssp_parse.c','ntlmssp.c','ntlmssp_sign.c','ntlmssp_client.c',
+ 'ntlmssp_server.c'])