mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-24 15:07:22 +00:00
13 lines
213 B
Python
13 lines
213 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', 'hooks']
|