mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-23 06:27:47 +00:00
16 lines
257 B
Python
16 lines
257 B
Python
from distutils import sysconfig
|
|
import os
|
|
|
|
os.environ['UWSGI_PYTHON_NOLIB'] = '1'
|
|
|
|
NAME = 'pyuwsgi'
|
|
|
|
CFLAGS = [
|
|
'-I' + sysconfig.get_python_inc(),
|
|
'-I' + sysconfig.get_python_inc(plat_specific=True),
|
|
]
|
|
LDFLAGS = []
|
|
LIBS = []
|
|
|
|
GCC_LIST = ['pyuwsgi']
|