mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
13 lines
171 B
Python
13 lines
171 B
Python
NAME='pty'
|
|
|
|
import os
|
|
uwsgi_os = os.uname()[0]
|
|
|
|
CFLAGS = []
|
|
LDFLAGS = []
|
|
if uwsgi_os in ('Linux', 'FreeBSD'):
|
|
LIBS = ['-lutil']
|
|
else:
|
|
LIBS = []
|
|
GCC_LIST = ['pty']
|