mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
Merge pull request #998 from xrmx/systemdfixup
systemd_logger: fix build with recent systemd
This commit is contained in:
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user