summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2015-11-20 21:32:49 +0100
committerColin Walters <walters@verbum.org>2015-11-20 15:53:17 -0500
commit69c81f5a4f41a77b0c72d0cc6ee462f76a481744 (patch)
tree273ce5f65b91c5cc45780382cceb1a3a4176ef91
parent867d65c4450dbd4ef7de2a7fd666831569687d4f (diff)
downloadlibgsystem-69c81f5a4f41a77b0c72d0cc6ee462f76a481744.tar.gz
buildsystem: Check for libsystemd not libsystemd-journal
Starting with systemd 200 (released 2014-02-20) libsystemd-journal is part of libsystemd instead of a seperate helper library. Thus Check for libsystemd instead. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7d3e6a6..0fb972d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -52,7 +52,7 @@ AC_ARG_WITH(systemd-journal,
AS_HELP_STRING([--without-systemd-journal], [Use systemd journal @<:@default=auto@:>@]),
[], [with_systemd_journal=auto])
AS_IF([test x$with_systemd_journal != xno], [
- PKG_CHECK_MODULES([BUILDDEP_SYSTEMD_JOURNAL], [libsystemd-journal >= 200], have_systemd_journal=yes, have_systemd_journal=no)
+ PKG_CHECK_MODULES([BUILDDEP_SYSTEMD_JOURNAL], [libsystemd >= 209], have_systemd_journal=yes, have_systemd_journal=no)
])
AM_CONDITIONAL(ENABLE_SYSTEMD_JOURNAL, test x$have_systemd_journal = xyes)
AS_IF([test x$have_systemd_journal = xyes], [