mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
35 lines
881 B
Python
35 lines
881 B
Python
VERSION = '0.9.8'
|
|
|
|
srcdir = '../..'
|
|
blddir = 'bin'
|
|
|
|
LIBREPLACE_DIR= srcdir + '/lib/replace'
|
|
LIBTALLOC_DIR= srcdir + '/lib/talloc'
|
|
|
|
def set_options(opt):
|
|
opt.recurse(LIBREPLACE_DIR)
|
|
opt.recurse(LIBTALLOC_DIR)
|
|
|
|
def configure(conf):
|
|
conf.sub_config(LIBREPLACE_DIR)
|
|
conf.sub_config(LIBTALLOC_DIR)
|
|
|
|
conf.CHECK_HEADERS('sys/epoll.h')
|
|
conf.CHECK_FUNCS('epoll_create')
|
|
|
|
conf.SAMBA_CONFIG_H()
|
|
|
|
def build(bld):
|
|
bld.BUILD_SUBDIR(LIBREPLACE_DIR)
|
|
bld.BUILD_SUBDIR(LIBTALLOC_DIR)
|
|
|
|
SRC = '''tevent.c tevent_debug.c tevent_epoll.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'''
|
|
|
|
|
|
bld.SAMBA_LIBRARY('tevent',
|
|
SRC,
|
|
deps='replace talloc',
|
|
vnum=VERSION)
|