build: Add tevent deps for users of tevent calls
authorAndrew Bartlett <abartlet@samba.org>
Tue, 10 Apr 2012 23:09:56 +0000 (09:09 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 11 Apr 2012 00:30:39 +0000 (02:30 +0200)
This isn't strictly required - this isn't a build break at the moment,
but is a good practice to directly depend on the major libraries we
use, and helps us to have more fine-grained rather than global
dependencies.

Andrew Bartlett

source3/modules/wscript_build

index 090ca1b7d95cccb65465bb181eb2e6e2ff6d0cc7..f230fe3a1fa64e96d93b4743141888d33af959eb 100644 (file)
@@ -352,7 +352,7 @@ bld.SAMBA3_MODULE('vfs_fileid',
 bld.SAMBA3_MODULE('vfs_aio_fork',
                  subsystem='vfs',
                  source=VFS_AIO_FORK_SRC,
-                 deps='samba-util',
+                 deps='samba-util tevent',
                  init_function='',
                  internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_aio_fork'),
                  enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_aio_fork'),
@@ -361,7 +361,7 @@ bld.SAMBA3_MODULE('vfs_aio_fork',
 bld.SAMBA3_MODULE('vfs_aio_pthread',
                  subsystem='vfs',
                  source=VFS_AIO_PTHREAD_SRC,
-                 deps='samba-util',
+                 deps='samba-util tevent',
                  init_function='',
                  internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_aio_pthread'),
                  enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_aio_pthread'),
@@ -475,7 +475,7 @@ bld.SAMBA3_MODULE('vfs_time_audit',
 bld.SAMBA3_MODULE('vfs_dfs_samba4',
                  subsystem='vfs',
                  source='vfs_dfs_samba4.c',
-                 deps='samba-util dfs_server_ad samdb',
+                 deps='samba-util dfs_server_ad samdb tevent',
                  init_function='',
                  internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_dfs_samba4'),
                  enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_dfs_samba4'))