mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-23 06:27:47 +00:00
18 lines
305 B
Python
18 lines
305 B
Python
NAME = 'servlet'
|
|
|
|
jvm_path = 'plugins/jvm'
|
|
|
|
up = {}
|
|
try:
|
|
execfile('%s/uwsgiplugin.py' % jvm_path, up)
|
|
except:
|
|
f = open('%s/uwsgiplugin.py' % jvm_path)
|
|
exec(f.read(), up)
|
|
f.close()
|
|
|
|
CFLAGS = up['CFLAGS']
|
|
CFLAGS.append('-I%s' % jvm_path)
|
|
LDFLAGS = []
|
|
LIBS = []
|
|
GCC_LIST = ['servlet_plugin']
|