mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
13 lines
216 B
Python
13 lines
216 B
Python
import os,sys
|
|
|
|
try:
|
|
LUALIB = os.environ['UWSGICONFIG_LUALIB']
|
|
except:
|
|
LUALIB = 'lua5.1'
|
|
|
|
NAME='lua'
|
|
CFLAGS = ['-I/usr/include/lua5.1/']
|
|
LDFLAGS = []
|
|
GCC_LIST = ['lua_plugin']
|
|
LIBS = ['-l%s' % LUALIB]
|