From: Sami Kerola Date: Sun, 31 Mar 2019 11:53:51 +0000 (+0100) Subject: build-sys: enable anacron by default X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8920856869a4682ce2300368da623fc86645c7a;p=cronie build-sys: enable anacron by default It is reasonable to think most users want to build anacron. Notice that this change will not effect any to packaging people who might have --enable-anacron in their build setup. Signed-off-by: Sami Kerola --- diff --git a/configure.ac b/configure.ac index 763b5d5..4d337a6 100644 --- a/configure.ac +++ b/configure.ac @@ -253,7 +253,7 @@ CRONIE_CONF_VAR([SYSCRONTAB], [the current working directory of the running daem CRONIE_CONF_VAR([SYS_CROND_DIR], [the current working directory of the running daemon], [${sysconfdir}/cron.d]) CRONIE_CONF_VAR([SPOOL_DIR], [the directory where all the user cron tabs reside], [${localstatedir}/spool/cron]) -AC_ARG_ENABLE([anacron], [AS_HELP_STRING([--enable-anacron], [Build also anacron.])]) +AC_ARG_ENABLE([anacron], [AS_HELP_STRING([--disable-anacron], [Do not build anacron.])], [], [enable_anacron=yes]) AM_CONDITIONAL([ANACRON], [test "$enable_anacron" = yes]) if test "$enable_anacron" != no; then ANACRON_CONF_VAR([ANACRON_SPOOL_DIR],[The path for anacron locks.],[${localstatedir}/spool/anacron])