1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Added --with-codepagedir as RedHat 6.2 and 7.x place them differently.

Jeremy.
(This used to be commit 1cfc542685)
This commit is contained in:
Jeremy Allison 2001-04-16 07:10:55 +00:00
parent bda419be61
commit 8c0a1c61cc
2 changed files with 735 additions and 698 deletions

1417
source3/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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