diff options
author | Günther Deschner <gd@samba.org> | 2011-01-07 15:21:26 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-01-07 16:33:55 +0100 |
commit | 286c3d6d8ed0b50b8da0e9416df200c9162bc4cf (patch) | |
tree | 333d36e6ee08ea554b3e3bd38fcdfb5cca1d3d82 /source3/build | |
parent | 5c9eca6fc4060d9780264fe3576f12ac1d9d9759 (diff) | |
download | samba-286c3d6d8ed0b50b8da0e9416df200c9162bc4cf.tar.gz samba-286c3d6d8ed0b50b8da0e9416df200c9162bc4cf.tar.bz2 samba-286c3d6d8ed0b50b8da0e9416df200c9162bc4cf.zip |
s3-waf: add NMBDSOCKETDIR variable.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Fri Jan 7 16:33:55 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/build')
-rw-r--r-- | source3/build/dynconfig.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/build/dynconfig.py b/source3/build/dynconfig.py index f755f7fef5..065471029f 100644 --- a/source3/build/dynconfig.py +++ b/source3/build/dynconfig.py @@ -8,6 +8,7 @@ dir_options = { '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' ], @@ -34,6 +35,7 @@ dyn_cflags = { 'LOGFILEBASE' : '${LOCALSTATEDIR}', 'MODULESDIR' : '${PREFIX}/modules', 'NCALRPCDIR' : '${LOCALSTATEDIR}/ncalrpc', + 'NMBDSOCKETDIR' : '${LOCKDIR}/.nmbd', 'NTP_SIGND_SOCKET_DIR' : '${NTP_SIGND_SOCKET_DIR}', 'PIDDIR' : '${LOCALSTATEDIR}/run', 'PRIVATE_DIR' : '${PRIVATEDIR}', |