From 56db9c9f274d414ad435bd7cd3f522f11257458e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 28 Jun 2011 11:31:02 +0200 Subject: s3-waf: remove s3-waf specific dynconfig. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This merge finally makes --with-logfilebase=foo and friends work appropriately. Andrews, Andreas, please check. Guenther Autobuild-User: Günther Deschner Autobuild-Date: Tue Jun 28 17:54:42 CEST 2011 on sn-devel-104 --- source3/build/dynconfig.py | 72 ---------------------------------------------- source3/build/wscript | 60 -------------------------------------- 2 files changed, 132 deletions(-) delete mode 100644 source3/build/dynconfig.py delete mode 100644 source3/build/wscript (limited to 'source3/build') diff --git a/source3/build/dynconfig.py b/source3/build/dynconfig.py deleted file mode 100644 index 65436b982d..0000000000 --- a/source3/build/dynconfig.py +++ /dev/null @@ -1,72 +0,0 @@ -import string, Utils - -# list of directory options to offer in configure -dir_options = { - 'with-cachedir' : [ '${PREFIX}/var/locks', 'where to put temporary cache files' ], - 'with-codepagedir' : [ '${PREFIX}/lib/samba', 'where to put codepages' ], - 'with-configdir' : [ '${PREFIX}/etc/samba', 'Where to put configuration files' ], - 'with-lockdir' : [ '${PREFIX}/var/locks', 'where to put lock files' ], - 'with-logfilebase' : [ '${PREFIX}/var/log/samba', 'Where to put log files' ], - 'with-ncalrpcdir' : [ '${PREFIX}/var/ncalrpc', 'where to put ncalrpc sockets' ], - 'with-nmbdsocketdir' : [ '${PREFIX}/var/locks/.nmbd', 'Where to put the nmbd socket directory' ], - 'with-ntp-signd-socket-dir' : [ '${PREFIX}/var/run/ntp_signd', 'NTP signed directory'], - 'with-pammodulesdir' : [ '', 'Which directory to use for PAM modules' ], - 'with-piddir' : [ '${PREFIX}/var/locks', 'where to put pid files' ], - 'with-privatedir' : [ '${PREFIX}/private', 'where to put smbpasswd' ], - 'with-selftest-prefix' : [ '', 'The prefix where make test will be run' ], - 'with-selftest-shrdir' : [ '', 'The share directory that make test will be run against' ], - 'with-statedir' : [ '${PREFIX}/var/locks', 'where to put persistent state files' ], - 'with-swatdir' : [ '${PREFIX}/swat', 'Where to put SWAT files' ], - 'with-winbindd-privileged-socket-dir' : [ '${PREFIX}/var/lib/winbindd_privileged', 'winbind privileged socket directory'], - 'with-winbindd-socket-dir' : [ '${PREFIX}/var/lib/winbindd', 'winbind socket directory' ], - } - -# list of cflags to use for dynconfig.c -dyn_cflags = { - 'BINDIR' : '${BINDIR}', - 'CACHEDIR' : '${CACHEDIR}', - 'CODEPAGEDIR' : '${CODEPAGEDIR}', - 'CONFIGDIR' : '${SYSCONFDIR}', - 'CONFIGFILE' : '${SYSCONFDIR}/smb.conf', - 'DATADIR' : '${DATADIR}', - 'LIBDIR' : '${LIBDIR}', - 'LOCALEDIR' : '${LOCALEDIR}', - 'LMHOSTSFILE' : '${SYSCONFDIR}/lmhosts', - 'LOCKDIR' : '${LOCALSTATEDIR}/locks', - 'LOGFILEBASE' : '${LOCALSTATEDIR}', - 'MODULESDIR' : '${PREFIX}/modules', - 'NCALRPCDIR' : '${LOCALSTATEDIR}/ncalrpc', - 'NMBDSOCKETDIR' : '${LOCKDIR}/.nmbd', - 'NTP_SIGND_SOCKET_DIR' : '${NTP_SIGND_SOCKET_DIR}', - 'PIDDIR' : '${LOCALSTATEDIR}/run', - 'PKGCONFIGDIR' : '${LIBDIR}/pkgconfigdir', - 'PRIVATE_DIR' : '${PRIVATEDIR}', - 'SBINDIR' : '${SBINDIR}', - 'SETUPDIR' : '${DATADIR}/setup', - 'SMB_PASSWD_FILE' : '${PRIVATEDIR}/smbpasswd', - 'STATEDIR' : '${LOCALSTATEDIR}', - 'SWATDIR' : '${PREFIX}/swat', - 'WINBINDD_PRIVILEGED_SOCKET_DIR' : '${WINBINDD_PRIVILEGED_SOCKET_DIR}', - 'WINBINDD_SOCKET_DIR' : '${WINBINDD_SOCKET_DIR}', - } - -def get_varname(v): - '''work out a variable name from a configure option name''' - if v.startswith('with-'): - v = v[5:] - v = v.upper() - v = string.replace(v, '-', '_') - return v - - -def dynconfig_cflags(bld): - '''work out the extra CFLAGS for dynconfig.c''' - cflags = [] - for f in dyn_cflags.keys(): - # substitute twice, as we could have substitutions containing variables - v = Utils.subst_vars(dyn_cflags[f], bld.env) - v = Utils.subst_vars(v, bld.env) - bld.ASSERT(v != '', "Empty dynconfig value for %s" % f) - bld.ASSERT(v.find('${') == -1, "Unsubstituted variable in %s : %s : %s" % (f, dyn_cflags[f], v)) - cflags.append('-D%s="%s"' % (f, v)) - return cflags diff --git a/source3/build/wscript b/source3/build/wscript deleted file mode 100644 index b9c6bd264c..0000000000 --- a/source3/build/wscript +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python - -import string, Utils, Options -from dynconfig import * - -def set_options(opt): - # get all the basic GNU options from the gnu_dirs tool - opt.tool_options('gnu_dirs') - for option in dir_options.keys(): - default = dir_options[option][0] - help = dir_options[option][1] - varname = get_varname(option) - opt.add_option('--%s' % option, - help=(help + ' [%s]' % default), - action="store", dest=varname, default=default) - - -cflags_vars = [ 'CONFIGFILE' ] - -def configure(conf): - # get all the basic GNU options from the gnu_dirs tool - conf.check_tool('gnu_dirs') - for option in dir_options.keys(): - varname = get_varname(option) - value = getattr(Options.options, varname, None) - value = Utils.subst_vars(value, conf.env) - conf.ASSERT(value is not None, "Missing configure option %s" % varname) - conf.ASSERT(varname not in conf.env, "Variable %s already defined" % varname) - conf.env[varname] = value - - for f in dyn_cflags.keys(): - # substitute twice, as we could have substitutions containing variables - v = Utils.subst_vars(dyn_cflags[f], conf.env) - v = Utils.subst_vars(v, conf.env) - conf.ASSERT(v != '', "Empty dynconfig value for %s" % f) - conf.ASSERT(v.find('${') == -1, "Unsubstituted variable in %s : %s : %s" % (f, dyn_cflags[f], v)) - if f not in conf.env: - conf.env[f] = v - if f in cflags_vars: - conf.DEFINE(f, v, quote=True) - -def build(bld): - cflags = dynconfig_cflags(bld) - bld.SAMBA3_SUBSYSTEM('DYNCONFIG', - '../../dynconfig/dynconfig.c', - deps='replace talloc tdb popt', - cflags=cflags) - - -def dynconfig_cflags(bld): - '''work out the extra CFLAGS for dynconfig.c''' - cflags = [] - for f in dyn_cflags.keys(): - # substitute twice, as we could have substitutions containing variables - v = Utils.subst_vars(dyn_cflags[f], bld.env) - v = Utils.subst_vars(v, bld.env) - bld.ASSERT(v != '', "Empty dynconfig value for %s" % f) - bld.ASSERT(v.find('${') == -1, "Unsubstituted variable in %s : %s : %s" % (f, dyn_cflags[f], v)) - cflags.append('-D%s="%s"' % (f, v)) - return cflags -- cgit