Files
uwsgi/plugins/glusterfs/uwsgiplugin.py
T
2013-07-27 21:48:00 +02:00

8 lines
221 B
Python

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