mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
9 lines
189 B
Python
9 lines
189 B
Python
import os
|
|
|
|
NAME='webdav'
|
|
CFLAGS = os.popen('xml2-config --cflags').read().rstrip().split()
|
|
LDFLAGS = []
|
|
LIBS = os.popen('xml2-config --libs').read().rstrip().split()
|
|
|
|
GCC_LIST = ['webdav']
|