mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
9 lines
185 B
Python
9 lines
185 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']
|