mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-19 03:57:21 +00:00
9787f6882c
Since systemd 209 all the functionalities of libsystemd-* have been merged in libsystemd.
11 lines
393 B
Python
11 lines
393 B
Python
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']
|