Files
uwsgi/plugins/systemd_logger/uwsgiplugin.py
T
2012-10-28 08:02:18 +01:00

8 lines
241 B
Python

import os
NAME='systemd_logger'
CFLAGS = os.popen('pkg-config --cflags libsystemd-journal').read().rstrip().split()
LDFLAGS = []
LIBS = os.popen('pkg-config --libs libsystemd-journal').read().rstrip().split()
GCC_LIST = ['systemd_logger']