summaryrefslogtreecommitdiff
path: root/source3/build
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-09-23 16:39:41 -0700
committerGünther Deschner <gd@samba.org>2010-09-23 16:43:07 -0700
commit260ad237273d3a1c34811a970680488ad3a83013 (patch)
tree6ace503a74238a4847b3cf92a6ed1258d76451ad /source3/build
parent0b0a717255e8249b31570c2289f7b73ddc678ea9 (diff)
downloadsamba-260ad237273d3a1c34811a970680488ad3a83013.tar.gz
s3-waf: add more diroptions.
Guenther
Diffstat (limited to 'source3/build')
-rw-r--r--source3/build/dynconfig.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/source3/build/dynconfig.py b/source3/build/dynconfig.py
index ad9d245de15..4bc97e5eddb 100644
--- a/source3/build/dynconfig.py
+++ b/source3/build/dynconfig.py
@@ -2,7 +2,7 @@ import string, Utils
# list of directory options to offer in configure
dir_options = {
- 'with-piddir' : [ '${PREFIX}/var/run', 'where to put pid files' ],
+ 'with-piddir' : [ '${PREFIX}/var/locks', 'where to put pid files' ],
'with-privatedir' : [ '${PREFIX}/private', 'Where to put sam.ldb and other private files' ],
'with-winbindd-socket-dir' : [ '${PREFIX}/var/lib/winbindd', 'winbind socket directory' ],
'with-winbindd-privileged-socket-dir' : [ '${PREFIX}/var/lib/winbindd_privileged', 'winbind privileged socket directory'],
@@ -11,6 +11,16 @@ dir_options = {
'with-codepagedir' : [ '${PREFIX}/lib/samba', 'where to put codepages' ],
'with-privatedir' : [ '${PREFIX}/private', 'where to put smbpasswd' ],
'with-cachedir' : [ '${PREFIX}/var/locks', 'where to put temporary cache files' ],
+ 'with-logfilebase' : [ '${PREFIX}/var/log/samba', 'Where to put log files' ],
+ 'with-configdir' : [ '${PREFIX}/etc/samba', 'Where to put configuration files' ],
+ 'with-swatdir' : [ '${PREFIX}/swat', 'Where to put SWAT files' ],
+ 'with-statedir' : [ '${PREFIX}/var/locks', 'where to put persistent state files' ],
+ 'with-cachedir' : [ '${PREFIX}/var/locks', 'where to put temporary cache files' ],
+ 'with-ncalrpcdir' : [ '${PREFIX}/var/ncalrpc', 'where to put ncalrpc sockets' ],
+ 'with-pammodulesdir' : [ '', 'Which directory to use for PAM modules' ],
+ 'with-codepagedir' : [ '${PREFIX}/lib/samba', 'Where to put codepages' ],
+ 'with-selftest-prefix' : [ '', 'The prefix where make test will be run' ],
+ 'with-selftest-shrdir' : [ '', 'The share directory that make test will be run against' ]
}
# list of cflags to use for dynconfig.c