mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-20 12:35:48 +00:00
14 lines
204 B
Python
14 lines
204 B
Python
import os
|
|
|
|
NAME = 'pty'
|
|
|
|
uwsgi_os = os.uname()[0]
|
|
|
|
CFLAGS = []
|
|
LDFLAGS = []
|
|
if uwsgi_os in ('Linux', 'FreeBSD', 'GNU', 'NetBSD', 'DragonFly'):
|
|
LIBS = ['-lutil']
|
|
else:
|
|
LIBS = []
|
|
GCC_LIST = ['pty']
|