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.
35 lines
503 B
35 lines
503 B
![]()
13 years ago
|
|
||
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
"""
|
||
|
waf build script for Lighttpd 2.x
|
||
|
License and Copyright: see COPYING file
|
||
|
"""
|
||
|
|
||
|
import Options, sys, Utils
|
||
|
|
||
|
source = '''
|
||
|
angel_connection.c
|
||
|
angel_data.c
|
||
|
encoding.c
|
||
|
idlist.c
|
||
|
ip_parsers.rl
|
||
|
module.c
|
||
|
radix.c
|
||
|
utils.c
|
||
|
waitqueue.c
|
||
|
'''
|
||
|
|
||
|
def configure(conf):
|
||
|
opts = Options.options
|
||
|
pass
|
||
|
|
||
|
|
||
|
def build(bld):
|
||
|
libcommon = bld.new_task_gen(
|
||
|
features = 'cc cstaticlib',
|
||
|
source = source,
|
||
|
uselib = ['glib', 'gthread', 'gmodule', 'ev'],
|
||
|
target = 'common')
|