X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=wscript_build;h=a0563bfd59cefad605361b8bf3e55985c55d609a;hp=d3982a3963441dfc70dd53b9b9a9461343de1032;hb=e22d5e5b7fd6af75a7b46c0b9fed7e65025930a2;hpb=5d2b5e98485430ff0e07cd389609ccde0cd13975 diff --git a/wscript_build b/wscript_build index d3982a39634..a0563bfd59c 100644 --- a/wscript_build +++ b/wscript_build @@ -2,7 +2,7 @@ # top level waf build script for samba4 -import Options +from waflib import Options import os srcdir = "." @@ -23,7 +23,7 @@ bld.env.build_public_headers = 'include/public' # compilation, so they are safe bld.env.public_headers_skip = ['lib/param/param_proto.h', 'lib/param/param_functions.h'] -samba_version.load_version(bld.env, is_install=bld.is_install) +version=samba_version.load_version(bld.env, is_install=bld.is_install) bld.SAMBA_MKVERSION('version.h') # bld.ENABLE_MAGIC_ORDERING() @@ -33,6 +33,9 @@ bld.env.ABS_TOP_BUILDDIR = bld.srcnode.abspath() + '/bin/default/docs-xml' bld.CONFIGURE_FILE('docs-xml/build/catalog.xml', ABS_TOP_BUILDDIR = bld.env.ABS_TOP_BUILDDIR, ABS_TOP_SRCDIR=bld.env.ABS_TOP_SRCDIR) +bld.env.DOC_VERSION=version.STRING +bld.CONFIGURE_FILE('docs-xml/build/DTD/samba.build.version', + DOC_VERSION=bld.env.DOC_VERSION) bld.RECURSE('docs-xml') bld.RECURSE('lib/replace') @@ -43,6 +46,7 @@ bld.RECURSE('lib/texpect') bld.RECURSE('lib/addns') bld.RECURSE('lib/ldb') bld.RECURSE('lib/param') +bld.RECURSE('lib/audit_logging') bld.RECURSE('dynconfig') bld.RECURSE('lib/util/charset') bld.RECURSE('python') @@ -67,12 +71,6 @@ bld.RECURSE('source4/lib/messaging') bld.RECURSE('source4/lib/events') bld.RECURSE('source4/lib/cmdline') bld.RECURSE('source4/lib/http') -if bld.CONFIG_GET('PAM_WRAPPER') and Options.options.with_pam: - bld.RECURSE('lib/pam_wrapper') -if bld.CONFIG_GET('RESOLV_WRAPPER'): - bld.RECURSE('lib/resolv_wrapper') -if bld.CONFIG_GET('UID_WRAPPER'): - bld.RECURSE('lib/uid_wrapper') if bld.CHECK_FOR_THIRD_PARTY(): bld.RECURSE('third_party') bld.RECURSE('source4/lib/stream') @@ -119,6 +117,7 @@ bld.RECURSE('libcli/echo') bld.RECURSE('libcli/dns') bld.RECURSE('libcli/samsync') bld.RECURSE('libcli/registry') +bld.RECURSE('lib/mscat') bld.RECURSE('source4/lib/policy') bld.RECURSE('libcli/named_pipe_auth') if bld.CONFIG_GET('ENABLE_SELFTEST'): @@ -150,6 +149,7 @@ bld.RECURSE('source3') bld.RECURSE('dfs_server') bld.RECURSE('file_server') bld.RECURSE('lib/krb5_wrap') +bld.RECURSE('packaging') bld.RECURSE('testsuite/headers')