Hi Craig,
Am 03.09.2015 um 12:58 schrieb Craig Small: > On Sun, Aug 30, 2015 at 09:41:33PM +0200, Michael Biebl wrote: >> Is it really necessary to tie the switch to libsystemd-dev to a new >> upstream release including a soname bump? > It was preferable but I've made that change. I had to directly patch > configure but it seemed to have gone ok. I see that you made the upload. Unfortunately, it fails to build [1]. The reason is, that you patch configure directly but also run dh-autoreconf, so configure is regenerated before build. You should patch only configure.ac. If you replace debian/patches/systemd-libs with the attached patch, it should do the trick. Regards, Michael [1] https://buildd.debian.org/status/package.php?p=procps&suite=unstable -- Why is it that all of the instruments seeking intelligent life in the universe are pointed away from Earth?
diff --git a/configure.ac b/configure.ac
index 79ba3c7..7ca854d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -154,12 +154,11 @@ AC_ARG_WITH([systemd],
[], [with_systemd=no]
)
if test "x$with_systemd" != xno; then
- PKG_CHECK_MODULES([SYSTEMD], [libsystemd-login >= 206], [], [
+ PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 209], [], [
AC_CHECK_LIB(systemd-login, sd_pid_get_slice, [have_systemd=yes],
[have_systemd=no])
if test "x$have_systemd" = xno; then
- AC_MSG_ERROR([systemd support missing/incomplete (requires >= 206)])
+ AC_MSG_ERROR([systemd support missing/incomplete (requires >= 209)])
fi
- SYSTEMD_LIBS="-lsystemd-login"
])
AM_CONDITIONAL(WITH_SYSTEMD, true)
AC_DEFINE(WITH_SYSTEMD, 1, [enable systemd support])
signature.asc
Description: OpenPGP digital signature

