waf: Stop automaticaly changing dashes to underscores in library names.
[sfrench/samba-autobuild/.git] / source4 / kdc / wscript_build
index 9c516c3e96a5f698cfe23167cb51a6cf586591b6..1433922268aed2cdc2098fe965469f02b4c3b7d9 100644 (file)
@@ -4,14 +4,14 @@ bld.SAMBA_MODULE('KDC',
        source='kdc.c kpasswdd.c',
        subsystem='service',
        init_function='server_service_kdc_init',
-       deps='kdc HDB_SAMBA4 WDC_SAMBA4 LIBSAMBA-HOSTCONFIG LIBTSOCKET LIBSAMBA_TSOCKET com_err',
+       deps='kdc HDB_SAMBA4 WDC_SAMBA4 samba-hostconfig LIBTSOCKET LIBSAMBA_TSOCKET com_err samba_server_gensec',
        local_include=False
        )
 
 
 bld.SAMBA_SUBSYSTEM('HDB_SAMBA4',
        source='hdb-samba4.c',
-       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb DB_GLUE LIBSAMBA-HOSTCONFIG com_err',
+       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db-glue samba-hostconfig com_err',
        includes='../heimdal/kdc',
        local_include=False
        )
@@ -21,7 +21,7 @@ bld.SAMBA_SUBSYSTEM('WDC_SAMBA4',
        source='wdc-samba4.c',
        local_include_first=False,
        includes='../heimdal/kdc',
-       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb PAC_GLUE LIBSAMBA-HOSTCONFIG com_err'
+       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb PAC_GLUE samba-hostconfig com_err'
        )
 
 
@@ -29,28 +29,29 @@ bld.SAMBA_SUBSYSTEM('PAC_GLUE',
        source='pac-glue.c',
        local_include_first=False,
        includes='../heimdal/kdc',
-       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb LIBSAMBA-HOSTCONFIG com_err'
+       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb samba-hostconfig com_err'
        )
 
 
-bld.SAMBA_SUBSYSTEM('DB_GLUE',
+bld.SAMBA_LIBRARY('db-glue',
        source='db-glue.c',
        local_include=False,
-       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb LIBSAMBA-HOSTCONFIG com_err'
+       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb samba-hostconfig com_err',
+       private_library=True
        )
 
 
 bld.SAMBA_SUBSYSTEM('MIT_SAMBA',
        source='mit_samba.c',
        local_include=False,
-       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb DB_GLUE PAC_GLUE LIBSAMBA-HOSTCONFIG com_err'
+       deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db-glue PAC_GLUE samba-hostconfig com_err'
        )
 
 
-bld.SAMBA_LIBRARY('mit_samba',
-                  source='',
-                  deps='MIT_SAMBA',
-                  external_library=True,
-                  realname='mit_samba.so'
-                  )
+bld.SAMBA_LIBRARY('mit-samba',
+       source='',
+       deps='MIT_SAMBA',
+       external_library=True,
+       realname='mit_samba.so'
+       )