summaryrefslogtreecommitdiffstats
path: root/source/configure.in
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-04-16 07:10:55 +0000
committerJeremy Allison <jra@samba.org>2001-04-16 07:10:55 +0000
commit1cfc542685f3ad6c16e922ca35043a1a9ce57f8e (patch)
tree322e944e7262e3f962412bdcc28d1cadbc2c2fea /source/configure.in
parent11a7c5e3d61348dc8c5dfdc782a95974a1547e4d (diff)
downloadsamba-1cfc542685f3ad6c16e922ca35043a1a9ce57f8e.tar.gz
samba-1cfc542685f3ad6c16e922ca35043a1a9ce57f8e.tar.xz
samba-1cfc542685f3ad6c16e922ca35043a1a9ce57f8e.zip
Added --with-codepagedir as RedHat 6.2 and 7.x place them differently.
Jeremy.
Diffstat (limited to 'source/configure.in')
-rw-r--r--source/configure.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/configure.in b/source/configure.in
index 16f7f0af1a7..97562056303 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -49,6 +49,22 @@ if test x"$samba_cv_volatile" = x"yes"; then
fi
+#################################################
+# set codepage directory location
+AC_ARG_WITH(codepagedir,
+[ --with-codepagedir=DIR Where to put codepage files ($codepagedir)],
+[ case "$withval" in
+ yes|no)
+ #
+ # Just in case anybody does it
+ #
+ AC_MSG_WARN([--with-codepagedir called without argument - will use default])
+ ;;
+ * )
+ codepagedir="$withval"
+ ;;
+ esac])
+
AC_CANONICAL_SYSTEM