2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-03-17 12:31:46 +03:00
VERSION = '0.9.8'
2010-03-17 12:32:15 +03:00
srcdir = '../..'
blddir = 'bin'
2010-03-17 12:31:46 +03:00
2010-02-26 14:21:50 +03:00
import sys
sys.path.insert(0, srcdir+"/buildtools/wafsamba")
import wafsamba
2010-03-17 12:32:15 +03:00
LIBREPLACE_DIR= srcdir + '/lib/replace'
LIBTALLOC_DIR= srcdir + '/lib/talloc'
2010-03-17 12:31:46 +03:00
def set_options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
opt.BUNDLED_EXTENSION_DEFAULT('tevent', noextenion='tevent')
2010-03-17 12:31:46 +03:00
opt.recurse(LIBREPLACE_DIR)
2010-03-17 12:32:15 +03:00
opt.recurse(LIBTALLOC_DIR)
2010-03-17 12:31:46 +03:00
def configure(conf):
conf.sub_config(LIBREPLACE_DIR)
2010-03-17 12:32:15 +03:00
conf.sub_config(LIBTALLOC_DIR)
2010-03-17 12:31:46 +03:00
2010-03-29 15:27:17 +04:00
if conf.CHECK_BUNDLED_SYSTEM('tevent', minversion=VERSION,
onlyif='talloc', implied_deps='replace talloc'):
2010-03-28 09:38:27 +04:00
conf.define('USING_SYSTEM_TEVENT', 1)
2010-03-23 01:29:51 +03:00
if conf.CHECK_FUNCS('epoll_create', headers='sys/epoll.h'):
conf.DEFINE('HAVE_EPOLL', 1)
2010-03-17 12:31:46 +03:00
conf.SAMBA_CONFIG_H()
def build(bld):
2010-02-23 03:16:44 +03:00
bld.BUILD_SUBDIR(LIBREPLACE_DIR)
bld.BUILD_SUBDIR(LIBTALLOC_DIR)
2010-03-17 12:31:46 +03:00
2010-03-21 05:14:24 +03:00
SRC = '''tevent.c tevent_debug.c tevent_fd.c tevent_immediate.c
2010-03-17 12:31:46 +03:00
tevent_queue.c tevent_req.c tevent_select.c
tevent_signal.c tevent_standard.c tevent_timed.c tevent_util.c tevent_wakeup.c'''
2010-03-21 05:14:24 +03:00
if bld.CONFIG_SET('HAVE_EPOLL'):
SRC += ' tevent_epoll.c'
2010-03-17 12:31:46 +03:00
2010-03-28 09:38:27 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_TEVENT'):
bld.SAMBA_LIBRARY('tevent',
SRC,
deps='replace talloc',
enabled= not bld.CONFIG_SET('USING_SYSTEM_TEVENT'),
vnum=VERSION)