mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-06 05:31:44 +00:00
9 lines
243 B
Python
9 lines
243 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']
|