2
0
Fork 0
lighttpd2/src/common/wscript

36 lines
548 B
Plaintext
Raw Normal View History

2009-08-18 20:57:23 +00:00
#!/usr/bin/env python
# encoding: utf-8
"""
waf build script for Lighttpd 2.x
License and Copyright: see COPYING file
"""
import Options, sys, Utils
def configure(conf):
pass
def build(bld):
source = '''
angel_connection.c
angel_data.c
encoding.c
idlist.c
ip_parsers.rl
module.c
radix.c
utils.c
waitqueue.c
'''
2009-08-18 20:57:23 +00:00
libcommon = bld.new_task_gen(
features = 'cc cshlib',
2009-08-18 20:57:23 +00:00
source = source,
defines = ['HAVE_CONFIG_H=1'],
2009-08-18 20:57:23 +00:00
uselib = ['glib', 'gthread', 'gmodule', 'ev'],
includes = ['#/include/'],
2009-08-18 20:57:23 +00:00
target = 'common')