diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index eff7fbb291..d98cc4d9ba 100644 --- a/configure.ac +++ b/configure.ac @@ -20,10 +20,10 @@ AC_PREREQ([2.64]) AC_INIT([systemd], - [232], - [http://github.com/systemd/systemd/issues], + [233], + [https://github.com/systemd/systemd/issues], [systemd], - [http://www.freedesktop.org/wiki/Software/systemd]) + [https://www.freedesktop.org/wiki/Software/systemd]) AC_CONFIG_SRCDIR([src/core/main.c]) AC_CONFIG_MACRO_DIR([m4]) @@ -581,7 +581,7 @@ AC_ARG_WITH([support-url], AS_HELP_STRING([--with-support-url=URL], [specify the support URL to show in catalog entries included in systemd]), [SUPPORT_URL="$withval"], - [SUPPORT_URL=http://lists.freedesktop.org/mailman/listinfo/systemd-devel]) + [SUPPORT_URL=https://lists.freedesktop.org/mailman/listinfo/systemd-devel]) AC_SUBST(SUPPORT_URL) @@ -1058,6 +1058,14 @@ fi AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"]) # ------------------------------------------------------------------------------ +have_environment_d=no +AC_ARG_ENABLE(environment-d, AS_HELP_STRING([--disable-environment-d], [disable environment.d support])) +if test "x$enable_environment_d" != "xno"; then + have_environment_d=yes +fi +AM_CONDITIONAL(ENABLE_ENVIRONMENT_D, [test "$have_environment_d" = "yes"]) + +# ------------------------------------------------------------------------------ have_sysusers=no AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support])) if test "x$enable_sysusers" != "xno"; then @@ -1669,6 +1677,7 @@ AC_MSG_RESULT([ vconsole: ${have_vconsole} quotacheck: ${have_quotacheck} tmpfiles: ${have_tmpfiles} + environment.d: ${have_environment_d} sysusers: ${have_sysusers} firstboot: ${have_firstboot} randomseed: ${have_randomseed} |