c689bcafd3
systemd >= 209 merged the individual libraries libsystemd-journal, libsystemd-login, libsystemd-id128 and libsystemd-daemon into a single library, libsystemd. To ease the transition one could pass an option to its build to generate stub libraries and matching pkg-config files. With systemd >= 229 this option has now been removed, causing the build to fail when the journald option is enabled. Change-Id: I26670f207f1a9e79c16be5ce8c8a49353143c5ba Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Robin Burchell <robin.burchell@viroteck.net>
11 lines
179 B
Prolog
11 lines
179 B
Prolog
SOURCES = journald.c
|
|
|
|
CONFIG += link_pkgconfig
|
|
|
|
packagesExist(libsystemd): \
|
|
PKGCONFIG_PRIVATE += libsystemd
|
|
else: \
|
|
PKGCONFIG_PRIVATE += libsystemd-journal
|
|
|
|
CONFIG -= qt
|