Files
uwsgi/plugins/xslt/uwsgiplugin.py
T
2013-05-02 10:04:04 +02:00

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']