xorg-launch-helper: fix build with systemd-209

This commit is contained in:
Stefan Saraev 2014-02-20 16:37:00 +02:00 committed by Stephan Raue
parent 6bfa5b0ee4
commit 568a02c01b
2 changed files with 28 additions and 0 deletions

View File

@ -32,6 +32,8 @@ PKG_LONGDESC="Xorg-launch-helper is a small utility that transforms the X server
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"
export LIBS="-lsystemd"
post_makeinstall_target() {
# do not install systemd services
rm -rf $INSTALL/usr/lib

View File

@ -0,0 +1,26 @@
From 9cd13bb39f2a8ce5d458f5a33010b5c9c5edf131 Mon Sep 17 00:00:00 2001
From: Stefan Saraev <stefan@saraev.ca>
Date: Thu, 20 Feb 2014 16:34:57 +0200
Subject: [PATCH] dont check for libsystemd-daemon
---
configure.ac | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index ceb8dd8..bc199c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,9 +20,6 @@ AC_CHECK_LIB([rt], [main], ,
AC_MSG_ERROR([librt is required but was not found]))
PKG_CHECK_MODULES([SYSTEMD], [systemd])
-PKG_CHECK_MODULES([LIBSYSTEMD_DAEMON], [libsystemd-daemon])
-AC_SUBST(LIBSYSTEMD_DAEMON_CFLAGS)
-AC_SUBST(LIBSYSTEMD_DAEMON_LIBS)
AC_ARG_WITH([systemduserunitdir], AC_HELP_STRING([--with-systemduserunitdir=DIR],
[path to systemd user service directory]), [path_systemduserunit=${withval}],
--
1.7.2.5