mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-08 14:41:55 +00:00
8 lines
244 B
Python
8 lines
244 B
Python
import os,sys
|
|
|
|
NAME='psgi'
|
|
CFLAGS = [os.popen('perl -MExtUtils::Embed -e ccopts').read().rstrip()]
|
|
LDFLAGS = [os.popen('perl -MExtUtils::Embed -e ldopts').read().rstrip()]
|
|
LIBS = []
|
|
GCC_LIST = ['uwsgi_plmodule', 'psgi_response', 'psgi_plugin']
|