summaryrefslogtreecommitdiff
path: root/source3/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
commit8c0a1c61cc3f0dbfe811ff0fadaf1f6c376b59fe (patch)
treed5b43fb0be5b06316160e0d339cdc00f3001ae91 /source3/configure.in
parentbda419be61c60d1651567bf48175603c6a6d611b (diff)
downloadsamba-8c0a1c61cc3f0dbfe811ff0fadaf1f6c376b59fe.tar.gz
samba-8c0a1c61cc3f0dbfe811ff0fadaf1f6c376b59fe.tar.bz2
samba-8c0a1c61cc3f0dbfe811ff0fadaf1f6c376b59fe.zip
Added --with-codepagedir as RedHat 6.2 and 7.x place them differently.
Jeremy. (This used to be commit 1cfc542685f3ad6c16e922ca35043a1a9ce57f8e)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 16f7f0af1a..9756205630 100644
--- a/source3/configure.in
+++ b/source3/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