mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-19 03:57:21 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
import os
|
|
|
|
NAME = 'xslt'
|
|
|
|
CFLAGS = os.popen('xslt-config --cflags').read().rstrip().split()
|
|
LDFLAGS = []
|
|
LIBS = os.popen('xslt-config --libs').read().rstrip().split()
|
|
|
|
GCC_LIST = ['xslt']
|