summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2018-07-25 12:26:05 +0200
committerStefan Metzmacher <metze@samba.org>2018-07-25 17:49:07 +0200
commitbd79564af10052e5b7bf4c446118b6eeb1b1e589 (patch)
tree0cf9a2db7c119a80ee5e8460a1fa079c4b939c22 /source3/wscript
parentcd37badc02b3e56f974168b28447444cd54ee541 (diff)
downloadsamba-bd79564af10052e5b7bf4c446118b6eeb1b1e589.tar.gz
s3:modules: add vfs_not_implemented module
This provides helper functions, which can be used by other modules, if they don't implement a specific function. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript
index 70d81add44f..c27aeb182e8 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -94,7 +94,9 @@ def configure(conf):
conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
# We crash without vfs_default
- required_static_modules.extend(TO_LIST('vfs_default'))
+ # and vfs_not_implemented provides helper function
+ # for other modules
+ required_static_modules.extend(TO_LIST('vfs_default vfs_not_implemented'))
conf.CHECK_HEADERS('netdb.h')
conf.CHECK_HEADERS('linux/falloc.h linux/ioctl.h')