diff options
-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}', |