mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-29 02:05:38 +00:00
9 lines
191 B
Python
9 lines
191 B
Python
from distutils import sysconfig
|
|
|
|
NAME='gevent'
|
|
CFLAGS = ['-I' + sysconfig.get_python_inc(), '-I' + sysconfig.get_python_inc(plat_specific=True)]
|
|
LDFLAGS = []
|
|
LIBS = []
|
|
|
|
GCC_LIST = ['gevent']
|