diff options
author | Philip M. White <pmw@qnan.org> | 2010-11-03 08:21:34 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-11-03 08:22:54 +0100 |
commit | cb9d048f90a2d1da7134ea7026be3a1a5574a920 (patch) | |
tree | 0651d8af6fc001d9053b8c7cd213fd040755caf4 /source4/ntvfs | |
parent | b028f55880f5beedb9acb440d4ea53b54345870b (diff) | |
download | samba-cb9d048f90a2d1da7134ea7026be3a1a5574a920.tar.gz samba-cb9d048f90a2d1da7134ea7026be3a1a5574a920.tar.bz2 samba-cb9d048f90a2d1da7134ea7026be3a1a5574a920.zip |
s4:waf - fix the build on Gentoo platforms
Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org>
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/wscript_build | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/source4/ntvfs/wscript_build b/source4/ntvfs/wscript_build index 4948d2f984..e181334fcc 100644 --- a/source4/ntvfs/wscript_build +++ b/source4/ntvfs/wscript_build @@ -25,7 +25,8 @@ bld.SAMBA_MODULE('ntvfs_simple', source='simple/vfs_simple.c simple/svfs_util.c', autoproto='simple/proto.h', subsystem='ntvfs', - init_function='ntvfs_simple_init' + init_function='ntvfs_simple_init', + deps='talloc' ) @@ -33,14 +34,16 @@ bld.SAMBA_MODULE('ntvfs_cifsposix', source='cifs_posix_cli/vfs_cifs_posix.c cifs_posix_cli/svfs_util.c', autoproto='cifs_posix_cli/proto.h', subsystem='ntvfs', - init_function='ntvfs_cifs_posix_init' + init_function='ntvfs_cifs_posix_init', + deps='talloc' ) bld.SAMBA_MODULE('ntvfs_print', source='print/vfs_print.c', subsystem='ntvfs', - init_function='ntvfs_print_init' + init_function='ntvfs_print_init', + deps='talloc' ) @@ -56,7 +59,8 @@ bld.SAMBA_MODULE('ntvfs_ipc', bld.SAMBA_MODULE('ntvfs_nbench', source='nbench/vfs_nbench.c', subsystem='ntvfs', - init_function='ntvfs_nbench_init' + init_function='ntvfs_nbench_init', + deps='talloc' ) |