mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-19 20:16:39 +00:00
10 lines
192 B
Python
10 lines
192 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']
|