summaryrefslogtreecommitdiffstats
path: root/package/fcgiwrap
diff options
context:
space:
mode:
authorThomas Claveirole <thomas.claveirole@green-communications.fr>2016-07-18 16:28:50 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-07-18 23:20:09 +0200
commit3dbd99c0d7a4d9fa318900db11d7b88141985739 (patch)
treebcf6303fb83787b93712ec395fd15bdc97ab6e50 /package/fcgiwrap
parent2158843582a583db37cf5f00f5c03ec9794c0e2f (diff)
downloadbuildroot-3dbd99c0d7a4d9fa318900db11d7b88141985739.tar.gz
buildroot-3dbd99c0d7a4d9fa318900db11d7b88141985739.zip
fcgiwrap: Add a patch to link with libsystemd, not libsystemd-daemon.
Fixes: http://autobuild.buildroot.org/results/9b5e70e42e53e7752245f7c43bd01f208fcf76d0/ Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/fcgiwrap')
-rw-r--r--package/fcgiwrap/0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/fcgiwrap/0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch b/package/fcgiwrap/0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch
new file mode 100644
index 0000000000..e88706f8ba
--- /dev/null
+++ b/package/fcgiwrap/0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch
@@ -0,0 +1,20 @@
+configure.ac: Check for libsystemd, not libsystemd-daemon.
+
+Newer versions of systemd do not provide libsystemd-daemon anymore.
+Therefore, use libsystemd instead.
+
+Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr>
+
+diff --git a/configure.ac b/configure.ac
+index bb3674e..2b02ef4 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -28,7 +28,7 @@ AC_ARG_WITH([systemd],
+ [], [with_systemd=check])
+ have_systemd=no
+ if test "x$with_systemd" != "xno"; then
+- PKG_CHECK_MODULES(systemd, [libsystemd-daemon],
++ PKG_CHECK_MODULES(systemd, [libsystemd],
+ [AC_DEFINE(HAVE_SYSTEMD, 1, [Define if systemd is available])
+ have_systemd=yes],
+ have_systemd=no)
OpenPOWER on IntegriCloud