mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-29 20:54:04 +00:00
8 lines
241 B
Python
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']
|