mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-25 07:26:24 +00:00
16 lines
251 B
Python
16 lines
251 B
Python
import os
|
|
uwsgi_os = os.uname()[0]
|
|
|
|
NAME = 'forkptyrouter'
|
|
|
|
CFLAGS = []
|
|
LDFLAGS = []
|
|
if uwsgi_os in ('Linux', 'FreeBSD', 'GNU', 'NetBSD', 'DragonFly'):
|
|
LIBS = ['-lutil']
|
|
else:
|
|
LIBS = []
|
|
|
|
REQUIRES = ['corerouter']
|
|
|
|
GCC_LIST = ['forkptyrouter']
|