]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
configure: tweak defaults to be more systemd friendly
authorRay Strode <rstrode@redhat.com>
Thu, 16 Jun 2016 18:40:27 +0000 (14:40 -0400)
committerRay Strode <rstrode@redhat.com>
Thu, 16 Jun 2016 18:40:27 +0000 (14:40 -0400)
systemd is everywhere now, yet we configure by default with non-systemd
friendly options.

This commit fixes that.

configure.ac

index 445034d3e5fe2bb8ebbb9bf303f5fa97f2c75e00..8efdda675c45e7148288050ed72827b1200c0132 100644 (file)
@@ -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