the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
609 B
36 lines
609 B
|
|
#!/usr/bin/env python |
|
# encoding: utf-8 |
|
|
|
""" |
|
waf build script for Lighttpd 2.x |
|
License and Copyright: see COPYING file |
|
""" |
|
|
|
import Options, sys |
|
|
|
source = ''' |
|
angel_config_parser.rl |
|
angel_log.c |
|
angel_main.c |
|
angel_plugin.c |
|
angel_plugin_core.c |
|
angel_proc.c |
|
angel_server.c |
|
angel_value.c |
|
''' |
|
|
|
def configure(conf): |
|
opts = Options.options |
|
pass |
|
|
|
|
|
def build(bld): |
|
libcommon = bld.new_task_gen( |
|
features = 'cc cprogram', |
|
source = source, |
|
defines = ['HAVE_CONFIG_H=1'], |
|
uselib = ['glib', 'gthread', 'gmodule', 'ev'], |
|
uselib_local = ['common'], |
|
includes = ['#/include/'], |
|
target = 'lighttpd2')
|
|
|