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