1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/tevent/wscript

41 lines
1.0 KiB
Plaintext
Raw Normal View History

VERSION = '0.9.8'
2010-03-17 12:32:15 +03:00
srcdir = '../..'
blddir = 'bin'
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'
def set_options(opt):
opt.recurse(LIBREPLACE_DIR)
2010-03-17 12:32:15 +03:00
opt.recurse(LIBTALLOC_DIR)
def configure(conf):
conf.sub_config(LIBREPLACE_DIR)
2010-03-17 12:32:15 +03:00
conf.sub_config(LIBTALLOC_DIR)
if conf.CHECK_FUNCS('epoll_create', headers='sys/epoll.h'):
conf.DEFINE('HAVE_EPOLL', 1)
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)
SRC = '''tevent.c tevent_debug.c tevent_fd.c tevent_immediate.c
tevent_queue.c tevent_req.c tevent_select.c
tevent_signal.c tevent_standard.c tevent_timed.c tevent_util.c tevent_wakeup.c'''
if bld.CONFIG_SET('HAVE_EPOLL'):
SRC += ' tevent_epoll.c'
bld.SAMBA_LIBRARY('tevent',
SRC,
deps='replace talloc',
vnum=VERSION)