summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2014-12-05 12:33:07 -0500
committerRay Strode <rstrode@redhat.com>2014-12-05 12:35:36 -0500
commitf8a21cd6cb2095e80889df8c41036e2df31ba01a (patch)
treedf29c756590fecac25a300dad9f095a7a28f771f
parentd816c19562b01f5a85fb61c8cb90e5b23fd04ca5 (diff)
downloadgdm-f8a21cd6cb2095e80889df8c41036e2df31ba01a.tar.gz
configure: require plymouth if using systemd
This is only a build requirement since gdm doesn't link against plymouth or anything like that and will work if it's not installed when run. https://bugzilla.gnome.org/show_bug.cgi?id=740802
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 1406cf01..daf7bf48 100644
--- a/configure.ac
+++ b/configure.ac
@@ -972,7 +972,7 @@ PKG_CHECK_MODULES(PLYMOUTH,
if test "x$with_plymouth" = "xauto" ; then
if test x$have_plymouth = xno ; then
- use_plymouth=no
+ use_plymouth=$use_systemd
else
use_plymouth=yes
fi
@@ -982,7 +982,7 @@ fi
if test "x$use_plymouth" != "xno" ; then
if test "x$have_plymouth" = "xno"; then
- AC_MSG_ERROR([Plymouth support explicitly required, but plymouth not found])
+ AC_MSG_ERROR([Plymouth support required, but plymouth not found])
fi
AC_DEFINE(WITH_PLYMOUTH, 1, [Define to enable plymouth support])