You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd2/src/common/wscript

37 lines
565 B
Python

#!/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,
defines = ['HAVE_CONFIG_H=1'],
uselib = ['glib', 'gthread', 'gmodule', 'ev'],
includes = ['#/include/'],
target = 'common')