Files
uwsgi/plugins/xslt/uwsgiplugin.py
T
2013-03-19 15:18:03 +01:00

9 lines
185 B
Python

import os
NAME='xslt'
CFLAGS = os.popen('xslt-config --cflags').read().rstrip().split()
LDFLAGS = os.popen('xslt-config --libs').read().rstrip().split()
LIBS = []
GCC_LIST = ['xslt']