diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-07-03 00:44:39 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-07-03 00:44:39 +0000 |
commit | 0df1e25542cfddbb383955e6f541207e38acf654 (patch) | |
tree | 06aeba3ee4301d66bc1c1226d42eb514fbde2f1c /source3/configure.in | |
parent | 09b2af9a648e468dea6f47e8c3533ba82b86d1f9 (diff) | |
download | samba-0df1e25542cfddbb383955e6f541207e38acf654.tar.gz samba-0df1e25542cfddbb383955e6f541207e38acf654.tar.bz2 samba-0df1e25542cfddbb383955e6f541207e38acf654.zip |
Kill off codepage related stuff, now we don't use codepages any more.
Andrew Bartlett
(This used to be commit d1ca2b9f23ce701eb6b6becafb1acd813fc8fc3a)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/source3/configure.in b/source3/configure.in index 29b705405e..915c91e585 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -11,14 +11,12 @@ AC_PREFIX_DEFAULT(/usr/local/samba) AC_ARG_WITH(fhs, [ --with-fhs Use FHS-compliant paths (default=no)], - codepagedir="\$(DATADIR)/samba/codepages" configdir="${sysconfdir}/samba" lockdir="\${VARDIR}/cache/samba" piddir="\$(VARDIR)/run/samba" logfilebase="\${VARDIR}/log/samba" privatedir="\${CONFIGDIR}/private" swatdir="\${DATADIR}/samba/swat", - codepagedir="\$(LIBDIR)/codepages" configdir="\$(LIBDIR)" logfilebase="\$(VARDIR)" lockdir="\${VARDIR}/locks" @@ -107,22 +105,6 @@ AC_ARG_WITH(configdir, esac]) ################################################# -# set codepage directory location -AC_ARG_WITH(codepagedir, -[ --with-codepagedir=DIR Where to put codepage files (\$libdir/codepages)], -[ 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]) - -################################################# # set log directory location AC_ARG_WITH(logfilebase, [ --with-logfilebase=DIR Where to put log files (\$(VARDIR))], @@ -138,7 +120,6 @@ AC_ARG_WITH(logfilebase, ;; esac]) -AC_SUBST(codepagedir) AC_SUBST(configdir) AC_SUBST(lockdir) AC_SUBST(piddir) |