From 9787f6882c2475aa9873e400988160b17dd04545 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Tue, 4 Aug 2015 11:13:32 +0200 Subject: [PATCH] systemd_logger: fix build with recent systemd Since systemd 209 all the functionalities of libsystemd-* have been merged in libsystemd. --- plugins/systemd_logger/uwsgiplugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/systemd_logger/uwsgiplugin.py b/plugins/systemd_logger/uwsgiplugin.py index fae248b7..c4abedda 100644 --- a/plugins/systemd_logger/uwsgiplugin.py +++ b/plugins/systemd_logger/uwsgiplugin.py @@ -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']