From: Ray Strode Date: Thu, 16 Jun 2016 18:40:27 +0000 (-0400) Subject: configure: tweak defaults to be more systemd friendly X-Git-Tag: 0.9.3~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99755d3eaca097a2a51dc5de7402537649d0402d;p=thirdparty%2Fplymouth.git configure: tweak defaults to be more systemd friendly systemd is everywhere now, yet we configure by default with non-systemd friendly options. This commit fixes that. --- diff --git a/configure.ac b/configure.ac index 445034d3..8efdda67 100644 --- a/configure.ac +++ b/configure.ac @@ -117,7 +117,7 @@ if test x$enable_upstart_monitoring = xyes; then fi AM_CONDITIONAL(ENABLE_UPSTART_MONITORING, [test "$enable_upstart_monitoring" = yes]) -AC_ARG_ENABLE(systemd-integration, AS_HELP_STRING([--enable-systemd-integration],[coordinate boot up with systemd]),enable_systemd_integration=$enableval,enable_systemd_integration=no) +AC_ARG_ENABLE(systemd-integration, AS_HELP_STRING([--enable-systemd-integration],[coordinate boot up with systemd]),enable_systemd_integration=$enableval,enable_systemd_integration=yes) AM_CONDITIONAL(ENABLE_SYSTEMD_INTEGRATION, [test "$enable_systemd_integration" = yes]) if test x$enable_systemd_integration = xyes; then @@ -131,7 +131,7 @@ if test x$enable_systemd_integration = xyes; then AC_SUBST(SYSTEMD_UNIT_DIR) fi -AC_ARG_WITH(system-root-install, AS_HELP_STRING([--with-system-root-install],[Install client in /bin and daemon in /sbin]),with_system_root_install=${withval},with_system_root_install=yes) +AC_ARG_WITH(system-root-install, AS_HELP_STRING([--with-system-root-install],[Install client in /bin and daemon in /sbin]),with_system_root_install=${withval},with_system_root_install=no) AM_CONDITIONAL(WITH_SYSTEM_ROOT_INSTALL, [test "$with_system_root_install" = yes]) if test x$with_system_root_install = xyes; then