X-Git-Url: http://git.samba.org/?a=blobdiff_plain;f=wscript_build;h=65b5e301774d91e6ac6db83348a0f4e86587f127;hb=a7ce00cc0392cbbc009e2dbe8d58258d6ba0566f;hp=ad790ca5068e8afcf3f1f47b55a356ad88a00bc1;hpb=89e998412fe07a01f9c79330973f62d909dc2da2;p=obnox%2Fsamba%2Fsamba-obnox.git diff --git a/wscript_build b/wscript_build index ad790ca5068..65b5e301774 100644 --- a/wscript_build +++ b/wscript_build @@ -2,12 +2,14 @@ # top level waf build script for samba4 +import Options import os srcdir = "." import samba_version bld.env.suffix3 = "3" +bld.env.suffix4 = "4" # create separate build groups for building the asn1 and et compiler, then # building the C from ASN1 and IDL, and finally the main build process @@ -19,25 +21,31 @@ bld.env.build_public_headers = 'include/public' # these are includes which appear in public headers, but with #ifdef conditional # compilation, so they are safe -bld.env.public_headers_skip = ['param/param_proto.h'] +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) bld.SAMBA_MKVERSION('version.h') # bld.ENABLE_MAGIC_ORDERING() +bld.env.ABS_TOP_SRCDIR = bld.srcnode.abspath() + '/docs-xml' +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.RECURSE('docs-xml') + bld.RECURSE('lib/replace') bld.RECURSE('lib/socket') bld.RECURSE('lib/talloc') bld.RECURSE('lib/tevent') +bld.RECURSE('lib/texpect') bld.RECURSE('lib/addns') -bld.RECURSE('lib/ccan') -bld.RECURSE('lib/tdb_compat') bld.RECURSE('lib/ldb') bld.RECURSE('lib/param') bld.RECURSE('dynconfig') bld.RECURSE('lib/util/charset') -bld.RECURSE('source4/scripting/python') +bld.RECURSE('python') bld.RECURSE('source4/param') bld.RECURSE('source4/librpc') bld.RECURSE('source4/dsdb') @@ -48,7 +56,6 @@ bld.RECURSE('source4/libnet') bld.RECURSE('source4/auth') bld.RECURSE('auth') bld.RECURSE('auth/kerberos') -bld.RECURSE('lib/iniparser/src') bld.RECURSE('nsswitch') bld.RECURSE('nsswitch/libwbclient') bld.RECURSE('source4/lib/samba3') @@ -59,19 +66,25 @@ bld.RECURSE('source4/lib/registry') bld.RECURSE('source4/lib/messaging') bld.RECURSE('source4/lib/events') bld.RECURSE('source4/lib/cmdline') -bld.RECURSE('lib/socket_wrapper') -bld.RECURSE('lib/nss_wrapper') -bld.RECURSE('lib/uid_wrapper') -bld.RECURSE('lib/popt') +bld.RECURSE('source4/lib/http') +if bld.CONFIG_GET('NSS_WRAPPER'): + bld.RECURSE('lib/nss_wrapper') +if bld.CONFIG_GET('SOCKET_WRAPPER'): + bld.RECURSE('lib/socket_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') +bld.RECURSE('lib/afs') bld.RECURSE('lib/util') bld.RECURSE('lib/tdb_wrap') bld.RECURSE('lib/tdr') bld.RECURSE('lib/tsocket') bld.RECURSE('lib/crypto') bld.RECURSE('lib/torture') -bld.RECURSE('lib/zlib') -bld.RECURSE('source4/lib') bld.RECURSE('source4/lib/com') bld.RECURSE('source4/dns_server') bld.RECURSE('source4/echo_server') @@ -94,10 +107,9 @@ bld.RECURSE('source4/libcli') bld.RECURSE('libcli/smb') bld.RECURSE('libcli/util') bld.RECURSE('libcli/cldap') -bld.RECURSE('lib/subunit/c') -bld.RECURSE('source4/kdc') bld.RECURSE('lib/smbconf') bld.RECURSE('lib/async_req') +bld.RECURSE('lib/dbwrap') bld.RECURSE('libcli/security') bld.RECURSE('libcli/ldap') bld.RECURSE('libcli/nbt') @@ -112,21 +124,22 @@ bld.RECURSE('libcli/registry') bld.RECURSE('source4/lib/policy') bld.RECURSE('libcli/named_pipe_auth') -if bld.CONFIG_SET("USING_SYSTEM_KRB5"): - if bld.CONFIG_SET("HEIMDAL_KRB5_CONFIG") and bld.CONFIG_SET("KRB5_CONFIG"): - if bld.CONFIG_GET("HEIMDAL_KRB5_CONFIG") != bld.CONFIG_GET("KRB5_CONFIG"): - # When both HEIMDAL_KRB5_CONFIG and KRB5_CONFIG are set and not equal, - # it means one is Heimdal-specific (krb5-config.heimdal, for example) - # and there is system heimdal - bld.PROCESS_SEPARATE_RULE('system_heimdal') +if bld.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'): + if bld.CONFIG_GET("HEIMDAL_KRB5_CONFIG") and bld.CONFIG_GET("USING_SYSTEM_KRB5"): + # When both HEIMDAL_KRB5_CONFIG and KRB5_CONFIG are set and not equal, + # it means one is Heimdal-specific (krb5-config.heimdal, for example) + # and there is system heimdal + bld.PROCESS_SEPARATE_RULE('system_heimdal') else: - bld.PROCESS_SEPARATE_RULE('system_krb5') + bld.PROCESS_SEPARATE_RULE('embedded_heimdal') else: - bld.PROCESS_SEPARATE_RULE('embedded_heimdal') + bld.PROCESS_SEPARATE_RULE('system_mitkrb5') bld.RECURSE('libcli/smbreadline') -bld.RECURSE('codepages') -bld.RECURSE('source4/setup') +if bld.AD_DC_BUILD_IS_ENABLED(): + bld.RECURSE('source4/setup') +if bld.env.with_ctdb: + bld.RECURSE('ctdb') bld.RECURSE('source4/scripting') bld.RECURSE('pidl') bld.RECURSE('lib') @@ -134,10 +147,10 @@ bld.RECURSE('libds/common') bld.RECURSE('source3') bld.RECURSE('dfs_server') bld.RECURSE('file_server') -bld.RECURSE('utils') +bld.RECURSE('lib/krb5_wrap') bld.RECURSE('testsuite/headers') -bld.RECURSE('testsuite/libsmbclient/src') bld.SYMBOL_CHECK() bld.DUP_SYMBOL_CHECK() +