s3compat: fixed the build on systems without a system tevent
authorAndrew Tridgell <tridge@samba.org>
Sun, 25 Apr 2010 12:13:04 +0000 (22:13 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 3 Jun 2010 01:12:29 +0000 (11:12 +1000)
source4/s3compat/wscript_build

index f4933addba2b5d89029498aedd26e9738e4b37e6..97cb8e1d0eea7f97a4713d212da5f9c91800595e 100644 (file)
@@ -848,21 +848,21 @@ def S3_SUBSYSTEM(name, source,
 
 
 S3_SUBSYSTEM('GROUPDB',
-                    source=GROUPDB_SRC,
-                    deps='tdb')
+             source=GROUPDB_SRC,
+             deps='tdb tevent')
 
 S3_SUBSYSTEM('TLDAP',
-                    source=TLDAP_SRC,
-                    deps='tdb')
+             source=TLDAP_SRC,
+             deps='tdb tevent')
 
 S3_SUBSYSTEM('PASSDB',
-                    source=PASSDB_SRC,
-                    deps='GROUPDB TLDAP',
-                    vars=locals())
+             source=PASSDB_SRC,
+             deps='GROUPDB TLDAP',
+             vars=locals())
 
 S3_SUBSYSTEM('PARAM_WITHOUT_REG',
-                    source=PARAM_WITHOUT_REG_SRC,
-                    deps='tdb')
+             source=PARAM_WITHOUT_REG_SRC,
+             deps='tdb tevent')
 
 S3_SUBSYSTEM('PARAM',
                     source=PARAM_SRC,
@@ -880,9 +880,9 @@ S3_SUBSYSTEM('LIB_NONSMBD',
                     vars=locals())
 
 S3_SUBSYSTEM('LIBSMB_ERR',
-                    source=LIBSMB_ERR_SRC,
-                    deps='tdb',
-                    vars=locals())
+             source=LIBSMB_ERR_SRC,
+             deps='tdb tevent',
+             vars=locals())
 
 S3_SUBSYSTEM('LIBSAMBA',
                     source=LIBSAMBA_SRC,
@@ -906,7 +906,7 @@ bld.SAMBA_SUBSYSTEM('s3compat_wrapper',
                     includes=SAMBA3_INCLUDES,
                     autoproto='s3compat.h',
                     source='s3compat.c',
-                    deps='tdb',
+                    deps='tdb tevent',
                     hide_symbols=True)
 
 bld.SAMBA_SUBSYSTEM('s3replace',