summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-04-11 09:09:56 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-04-11 02:30:39 +0200
commitf7d60899d6118185cc09aad52eeaf3146d577413 (patch)
tree00e61452fabfa1905ec7a938d4a3fe54f9488fce /source3
parentfe707f6549292ccb681ccd0c596cbd17525522f3 (diff)
downloadsamba-f7d60899d6118185cc09aad52eeaf3146d577413.tar.gz
samba-f7d60899d6118185cc09aad52eeaf3146d577413.tar.bz2
samba-f7d60899d6118185cc09aad52eeaf3146d577413.zip
build: Add tevent deps for users of tevent calls
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
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/wscript_build6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build
index 090ca1b7d9..f230fe3a1f 100644
--- a/source3/modules/wscript_build
+++ b/source3/modules/wscript_build
@@ -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'))