systemd_logger: fix build with recent systemd

Since systemd 209 all the functionalities of libsystemd-* have
been merged in libsystemd.
This commit is contained in:
Riccardo Magliocchetti
2015-08-04 11:13:32 +02:00
parent 7efa3666b7
commit 9787f6882c
+2
View File
@@ -3,6 +3,8 @@ import os
NAME = 'systemd_logger'
CFLAGS = os.popen('pkg-config --cflags libsystemd-journal').read().rstrip().split()
CFLAGS += os.popen('pkg-config --cflags libsystemd').read().rstrip().split()
LDFLAGS = []
LIBS = os.popen('pkg-config --libs libsystemd-journal').read().rstrip().split()
LIBS += os.popen('pkg-config --libs libsystemd').read().rstrip().split()
GCC_LIST = ['systemd_logger']