summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorGerald (Jerry) Carter <jerry@samba.org>2007-11-01 13:00:10 -0400
committerGerald (Jerry) Carter <jerry@samba.org>2007-11-01 13:00:10 -0400
commit8132a7b98b09bb5915559f6ca0ca8eb3ae0e529d (patch)
treece643ccdb0c0820d662d8373d2efc974245a76ea /source3/configure.in
parenta7fab272082e82aa590e620da20dad4042b81e20 (diff)
downloadsamba-8132a7b98b09bb5915559f6ca0ca8eb3ae0e529d.tar.gz
samba-8132a7b98b09bb5915559f6ca0ca8eb3ae0e529d.tar.bz2
samba-8132a7b98b09bb5915559f6ca0ca8eb3ae0e529d.zip
Patch from Debian Samba package maintainers:
Patch 1 of 3: - Patch 1 adds the new variables - Patch 2 makes uses of them for files belonging to the "state" path and the "code pages" path This patch seemed more easily acceptable, which explains why we separated it from patch 3 - Patch 3 reassigns files to the "cache" path. Indeed all "debatable" changes have been moved to that one The point is adding: - a path for non discardable state data: basically all TDB files that may need to be backed up - a path for shared data: mostly codepage stuff - a path for cache data to host files such as browse.dat, printers.tbd, <printer>.tdb All these are currently mixed in "libdir" (${prefix}/lib/samba by default). The patch keeps these new paths to point to ${prefix}/lib/samba by default and does therefore not change the software behaviour. Used alone, it just adds unused variables...so it can safely be used in sources without any behaviour change and no impact on Samba developers work. (This used to be commit b7d2fadbef044a89920da613b1aafc74a3d94e24)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 9e1ebeffe7..227ab4033d 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -65,6 +65,10 @@ AC_ARG_WITH(fhs,
libdir="\${prefix}/lib/samba"
configdir="\${sysconfdir}/samba"
swatdir="\${DATADIR}/samba/swat"
+ codepagedir="\${prefix}/lib/samba"
+ statedir="\${VARDIR}/lib/samba"
+ cachedir="\${VARDIR}/lib/samba"
+ AC_DEFINE(FHS_COMPATIBLE, 1, [Whether to use fully FHS-compatible paths])
;;
esac])
@@ -284,6 +288,9 @@ AC_SUBST(privatedir)
AC_SUBST(swatdir)
AC_SUBST(bindir)
AC_SUBST(sbindir)
+AC_SUBST(codepagedir)
+AC_SUBST(statedir)
+AC_SUBST(cachedir)
AC_SUBST(rootsbindir)
AC_SUBST(pammodulesdir)