Files
uwsgi/plugins/lua/uwsgiplugin.py
T
2010-12-11 20:08:23 +01:00

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]