Files
uwsgi/plugins/systemd_logger/uwsgiplugin.py
T

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']