Skip to content

Commit

Permalink
build: Add tevent deps for users of tevent calls
Browse files Browse the repository at this point in the history
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
  • Loading branch information
abartlet committed Apr 11, 2012
1 parent fe707f6 commit f7d6089
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source3/modules/wscript_build
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand All @@ -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'),
Expand Down Expand Up @@ -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'))
Expand Down

0 comments on commit f7d6089

Please sign in to comment.