Fix inconsistency between --sysconfdir and --with-confdir, deprecate --with-confdir.
The inconsistency was created in
c74836dc4a
where genssl.sh.in was made
to use sysconfdir while the IRCd and buildsystem still used confdir.
This commit is contained in:
parent
80e49b4ca8
commit
634d4aad72
7 changed files with 31 additions and 80 deletions
|
@ -28,7 +28,7 @@ libdir = @libdir@
|
||||||
pkglibdir = @pkglibdir@
|
pkglibdir = @pkglibdir@
|
||||||
moduledir = @moduledir@
|
moduledir = @moduledir@
|
||||||
helpdir = @helpdir@
|
helpdir = @helpdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
logdir = @logdir@
|
logdir = @logdir@
|
||||||
rundir = @rundir@
|
rundir = @rundir@
|
||||||
pkgrundir = @pkgrundir@
|
pkgrundir = @pkgrundir@
|
||||||
|
@ -130,8 +130,8 @@ install-mkdirs:
|
||||||
-@if test ! -d $(DESTDIR)$(bindir); then \
|
-@if test ! -d $(DESTDIR)$(bindir); then \
|
||||||
mkdir -p -m 755 $(DESTDIR)$(bindir); \
|
mkdir -p -m 755 $(DESTDIR)$(bindir); \
|
||||||
fi
|
fi
|
||||||
-@if test ! -d $(DESTDIR)$(confdir); then \
|
-@if test ! -d $(DESTDIR)$(sysconfdir); then \
|
||||||
mkdir -p -m 755 $(DESTDIR)$(confdir); \
|
mkdir -p -m 755 $(DESTDIR)$(sysconfdir); \
|
||||||
fi
|
fi
|
||||||
-@if test ! -d $(DESTDIR)$(mandir); then \
|
-@if test ! -d $(DESTDIR)$(mandir); then \
|
||||||
mkdir -p -m 755 $(DESTDIR)$(mandir); \
|
mkdir -p -m 755 $(DESTDIR)$(mandir); \
|
||||||
|
|
|
@ -23,7 +23,7 @@ bindir = @bindir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
pkglibexecdir = @pkglibexecdir@
|
pkglibexecdir = @pkglibexecdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||||
|
|
||||||
|
|
54
configure
vendored
54
configure
vendored
|
@ -621,7 +621,6 @@ helpdir
|
||||||
HELP_DIR
|
HELP_DIR
|
||||||
logdir
|
logdir
|
||||||
LOG_DIR
|
LOG_DIR
|
||||||
confdir
|
|
||||||
ETC_DIR
|
ETC_DIR
|
||||||
ZLIB_LD
|
ZLIB_LD
|
||||||
ENCSPEED
|
ENCSPEED
|
||||||
|
@ -1379,7 +1378,8 @@ Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
||||||
--with-zlib-path=DIR Path to libz.so for ziplinks support.
|
--with-zlib-path=DIR Path to libz.so for ziplinks support.
|
||||||
--with-confdir=DIR Directory to install config files.
|
--with-confdir=DIR Directory to install config files [deprecated, use
|
||||||
|
--sysconfdir instead].
|
||||||
--with-logdir=DIR Directory where to write logfiles.
|
--with-logdir=DIR Directory where to write logfiles.
|
||||||
--with-helpdir=DIR Directory to install help files.
|
--with-helpdir=DIR Directory to install help files.
|
||||||
--with-moduledir=DIR Directory to install modules.
|
--with-moduledir=DIR Directory to install modules.
|
||||||
|
@ -7282,48 +7282,18 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to modify confdir" >&5
|
|
||||||
$as_echo_n "checking whether to modify confdir... " >&6; }
|
|
||||||
|
|
||||||
# Check whether --with-confdir was given.
|
# Check whether --with-confdir was given.
|
||||||
if test "${with_confdir+set}" = set; then :
|
if test "${with_confdir+set}" = set; then :
|
||||||
withval=$with_confdir; confdir=`echo $withval | sed 's/\/$//'`
|
withval=$with_confdir; sysconfdir=`echo $withval | sed 's/\/$//'`
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
||||||
$as_echo "yes" >&6; }
|
|
||||||
|
|
||||||
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
|
||||||
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
||||||
last_ac_define_dir=`eval echo $confdir`
|
|
||||||
ac_define_dir=`eval echo $last_ac_define_dir`
|
|
||||||
while test "x$last_ac_define_dir" != "x$ac_define_dir"; do
|
|
||||||
last_ac_define_dir="$ac_define_dir"
|
|
||||||
ac_define_dir=`eval echo $last_ac_define_dir`
|
|
||||||
done
|
|
||||||
ETC_DIR="$ac_define_dir"
|
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
|
||||||
#define ETC_DIR "$ac_define_dir"
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
confdir=`(
|
|
||||||
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
|
||||||
test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
|
|
||||||
eval echo \""$confdir"\"
|
|
||||||
)`
|
|
||||||
|
|
||||||
|
|
||||||
else
|
else
|
||||||
confdir='${sysconfdir}'
|
confdir='${sysconfdir}'
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
fi
|
||||||
$as_echo "no" >&6; }
|
|
||||||
|
|
||||||
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
||||||
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
||||||
last_ac_define_dir=`eval echo $confdir`
|
last_ac_define_dir=`eval echo $sysconfdir`
|
||||||
ac_define_dir=`eval echo $last_ac_define_dir`
|
ac_define_dir=`eval echo $last_ac_define_dir`
|
||||||
while test "x$last_ac_define_dir" != "x$ac_define_dir"; do
|
while test "x$last_ac_define_dir" != "x$ac_define_dir"; do
|
||||||
last_ac_define_dir="$ac_define_dir"
|
last_ac_define_dir="$ac_define_dir"
|
||||||
|
@ -7339,18 +7309,6 @@ _ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
confdir=`(
|
|
||||||
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
|
||||||
test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
|
|
||||||
eval echo \""$confdir"\"
|
|
||||||
)`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to modify logdir" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to modify logdir" >&5
|
||||||
$as_echo_n "checking whether to modify logdir... " >&6; }
|
$as_echo_n "checking whether to modify logdir... " >&6; }
|
||||||
|
|
||||||
|
|
21
configure.ac
21
configure.ac
|
@ -609,22 +609,15 @@ AC_ARG_ENABLE(epoll, AC_HELP_STRING([--enable-epoll],[Force sys_epoll usage (Lin
|
||||||
],)
|
],)
|
||||||
|
|
||||||
dnl **********************************************************************
|
dnl **********************************************************************
|
||||||
dnl Check for --with-confdir
|
dnl Check for --with-confdir [deprecated, use --sysconfdir instead]
|
||||||
dnl **********************************************************************
|
dnl **********************************************************************
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether to modify confdir])
|
AC_ARG_WITH([confdir],
|
||||||
AC_ARG_WITH(confdir,
|
[AC_HELP_STRING([--with-confdir=DIR],
|
||||||
AC_HELP_STRING([--with-confdir=DIR],
|
[Directory to install config files [deprecated, use --sysconfdir instead].])],
|
||||||
[Directory to install config files.]),
|
[ sysconfdir=`echo $withval | sed 's/\/$//'` ],
|
||||||
[ confdir=`echo $withval | sed 's/\/$//'`
|
[ confdir='${sysconfdir}' ])
|
||||||
AC_MSG_RESULT(yes)
|
AC_DEFINE_DIR([ETC_DIR], [sysconfdir], [Prefix where config files are installed.])
|
||||||
AC_DEFINE_DIR(ETC_DIR, confdir, [Prefix where config files are installed.])
|
|
||||||
AC_SUBST_DIR([confdir]) ],
|
|
||||||
[ confdir='${sysconfdir}'
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
AC_DEFINE_DIR(ETC_DIR, confdir, [Prefix where config files are installed.])
|
|
||||||
AC_SUBST_DIR([confdir])]
|
|
||||||
)
|
|
||||||
|
|
||||||
dnl **********************************************************************
|
dnl **********************************************************************
|
||||||
dnl Check for --with-logdir
|
dnl Check for --with-logdir
|
||||||
|
|
|
@ -22,7 +22,7 @@ exec_prefix = @exec_prefix@
|
||||||
exec_suffix = @exec_suffix@
|
exec_suffix = @exec_suffix@
|
||||||
bindir = @bindir@
|
bindir = @bindir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
# Change this later! -- adrian
|
# Change this later! -- adrian
|
||||||
moduledir = @moduledir@
|
moduledir = @moduledir@
|
||||||
|
@ -45,9 +45,9 @@ CPPFLAGS = ${INCLUDES} @CPPFLAGS@
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
install-mkdirs:
|
install-mkdirs:
|
||||||
-@if test ! -d $(DESTDIR)$(confdir); then \
|
-@if test ! -d $(DESTDIR)$(sysconfdir); then \
|
||||||
echo "mkdir -p $(confdir)"; \
|
echo "mkdir -p $(sysconfdir)"; \
|
||||||
mkdir -p $(DESTDIR)$(confdir); \
|
mkdir -p $(DESTDIR)$(sysconfdir); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
-@if test ! -d $(DESTDIR)$(mandir); then \
|
-@if test ! -d $(DESTDIR)$(mandir); then \
|
||||||
|
@ -58,19 +58,19 @@ install-mkdirs:
|
||||||
install: install-mkdirs build
|
install: install-mkdirs build
|
||||||
@echo "ircd: installing example config files ($(CONFS))"
|
@echo "ircd: installing example config files ($(CONFS))"
|
||||||
@for i in $(CONFS); do \
|
@for i in $(CONFS); do \
|
||||||
if test -f $(DESTDIR)$(confdir)/$$i; then \
|
if test -f $(DESTDIR)$(sysconfdir)/$$i; then \
|
||||||
$(MV) $(DESTDIR)$(confdir)/$$i $(DESTDIR)$(confdir)/$$i.old; \
|
$(MV) $(DESTDIR)$(sysconfdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.old; \
|
||||||
fi; \
|
fi; \
|
||||||
$(INSTALL_DATA) $$i $(DESTDIR)$(confdir); \
|
$(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
-@if test ! -f $(DESTDIR)$(confdir)/ircd.motd; then \
|
-@if test ! -f $(DESTDIR)$(sysconfdir)/ircd.motd; then \
|
||||||
echo "ircd: installing motd file (ircd.motd)"; \
|
echo "ircd: installing motd file (ircd.motd)"; \
|
||||||
$(INSTALL_DATA) ircd.motd $(DESTDIR)$(confdir); \
|
$(INSTALL_DATA) ircd.motd $(DESTDIR)$(sysconfdir); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
-@if test -f $(DESTDIR)$(confdir)/links.txt; then \
|
-@if test -f $(DESTDIR)$(sysconfdir)/links.txt; then \
|
||||||
$(RM) $(DESTDIR)$(confdir)/links.txt; \
|
$(RM) $(DESTDIR)$(sysconfdir)/links.txt; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@echo "ircd: installing manpage"
|
@echo "ircd: installing manpage"
|
||||||
|
|
|
@ -23,7 +23,7 @@ bindir = @bindir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
pkglibexecdir = @pkglibexecdir@
|
pkglibexecdir = @pkglibexecdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ exec_prefix = @exec_prefix@
|
||||||
bindir = @bindir@
|
bindir = @bindir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
|
|
||||||
PROGS = viconf mkpasswd convertilines convertklines genssl.sh
|
PROGS = viconf mkpasswd convertilines convertklines genssl.sh
|
||||||
|
@ -71,7 +71,7 @@ exec_prefix = @exec_prefix@
|
||||||
exec_suffix = @exec_suffix@
|
exec_suffix = @exec_suffix@
|
||||||
bindir = @bindir@
|
bindir = @bindir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
confdir = @confdir@
|
sysconfdir = @sysconfdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
# Change this later! -- adrian
|
# Change this later! -- adrian
|
||||||
moduledir = @moduledir@
|
moduledir = @moduledir@
|
||||||
|
|
Loading…
Reference in a new issue