auth: Move the rest of the source4 gensec_ntlmssp code to the top level
[nivanova/samba-autobuild/.git] / source4 / auth / wscript_build
index e44a0324f9fefc0ca9877073c6da5d0c3b2eb56c..3b43a62b2a3ecdccc8e15f95e31d18b75c84dfd3 100644 (file)
@@ -2,53 +2,51 @@
 
 bld.RECURSE('gensec')
 bld.RECURSE('kerberos')
-bld.RECURSE('ntlmssp')
 bld.RECURSE('ntlm')
-bld.RECURSE('credentials')
 
 bld.SAMBA_SUBSYSTEM('auth_session',
        source='session.c',
        autoproto='session_proto.h',
-       public_deps='CREDENTIALS',
+       public_deps='samba-credentials',
        public_headers='session.h',
        header_path='samba',
-       deps='SAMDB auth_sam'
+       deps='samdb auth4_sam'
        )
 
+bld.SAMBA_LIBRARY('auth_unix_token',
+                  source='unix_token.c',
+                  autoproto='unix_token_proto.h',
+                  public_deps='LIBWBCLIENT_OLD',
+                  private_library=True,
+                  )
+
 
 bld.SAMBA_SUBSYSTEM('samba_server_gensec',
        source='samba_server_gensec.c',
-       public_deps='CREDENTIALS gensec auth'
+       public_deps='samba-credentials gensec auth4'
        )
 
 
 bld.SAMBA_SUBSYSTEM('auth_system_session',
        source='system_session.c',
        autoproto='system_session_proto.h',
-       public_deps='CREDENTIALS',
+       public_deps='samba-credentials',
        deps='auth_session',
        )
 
 
-bld.SAMBA_SUBSYSTEM('auth_sam',
+bld.SAMBA_SUBSYSTEM('auth4_sam',
        source='sam.c',
        autoproto='auth_sam.h',
-       public_deps='SAMDB LIBSECURITY ldb tevent',
+       public_deps='samdb security ldb tevent',
        deps=''
        )
 
 
-bld.SAMBA_SUBSYSTEM('auth_sam_reply',
-       source='auth_sam_reply.c',
-        deps='talloc',
-       autoproto='auth_sam_reply.h'
-       )
-
-
 bld.SAMBA_PYTHON('pyauth',
        source='pyauth.c',
        public_deps='auth_system_session',
-       deps='SAMDB PYTALLOC pyparam_util',
+       deps='samdb pytalloc-util pyparam_util pyldb-util pycredentials auth4',
        realname='samba/auth.so'
        )