2010-03-28 09:48:49 +11:00
#!/usr/bin/env python
2010-04-04 10:06:34 +10:00
APPNAME = 'tevent'
2019-11-16 23:54:31 +02:00
VERSION = '0.10.2'
2010-03-17 20:31:46 +11:00
2010-04-04 10:18:39 +10:00
import sys, os
# find the buildtools directory
2018-02-02 16:34:31 +02:00
top = '.'
while not os.path.exists(top+'/buildtools') and len(top.split('/')) < 5:
top = top + '/..'
sys.path.insert(0, top + '/buildtools/wafsamba')
out = 'bin'
2010-04-04 10:18:39 +10:00
2018-02-02 16:34:31 +02:00
import wafsamba
from wafsamba import samba_dist, samba_utils
from waflib import Options, Logs, Context
2010-04-04 11:00:42 +10:00
2015-03-25 11:13:40 +00:00
samba_dist.DIST_DIRS('lib/tevent:. lib/replace:lib/replace lib/talloc:lib/talloc buildtools:buildtools third_party/waf:third_party/waf')
2010-02-26 22:21:50 +11:00
2018-02-02 16:34:31 +02:00
def options(opt):
2010-03-28 15:42:28 +11:00
opt.BUILTIN_DEFAULT('replace')
2010-10-23 23:26:43 +02:00
opt.PRIVATE_EXTENSION_DEFAULT('tevent', noextension='tevent')
2010-04-04 13:16:49 +10:00
opt.RECURSE('lib/replace')
opt.RECURSE('lib/talloc')
2010-09-23 14:28:02 -07:00
2010-03-17 20:31:46 +11:00
def configure(conf):
2010-04-04 13:16:49 +10:00
conf.RECURSE('lib/replace')
conf.RECURSE('lib/talloc')
2010-03-17 20:31:46 +11:00
2010-04-13 21:20:52 +10:00
conf.env.standalone_tevent = conf.IN_LAUNCH_DIR()
if not conf.env.standalone_tevent:
2011-11-12 16:36:28 +01:00
if conf.CHECK_BUNDLED_SYSTEM_PKG('tevent', minversion=VERSION,
2010-04-13 21:20:52 +10:00
onlyif='talloc', implied_deps='replace talloc'):
conf.define('USING_SYSTEM_TEVENT', 1)
2017-01-27 14:37:39 -05:00
if not conf.env.disable_python and \
conf.CHECK_BUNDLED_SYSTEM_PYTHON('pytevent', 'tevent', minversion=VERSION):
2011-11-12 16:14:33 +01:00
conf.define('USING_SYSTEM_PYTEVENT', 1)
2010-03-28 16:38:27 +11:00
2010-03-23 09:29:51 +11:00
if conf.CHECK_FUNCS('epoll_create', headers='sys/epoll.h'):
conf.DEFINE('HAVE_EPOLL', 1)
2010-03-17 20:31:46 +11:00
2013-02-22 14:26:16 +01:00
tevent_num_signals = 64
v = conf.CHECK_VALUEOF('NSIG', headers='signal.h')
if v is not None:
tevent_num_signals = max(tevent_num_signals, v)
v = conf.CHECK_VALUEOF('_NSIG', headers='signal.h')
if v is not None:
tevent_num_signals = max(tevent_num_signals, v)
v = conf.CHECK_VALUEOF('SIGRTMAX', headers='signal.h')
if v is not None:
tevent_num_signals = max(tevent_num_signals, v)
v = conf.CHECK_VALUEOF('SIGRTMIN', headers='signal.h')
if v is not None:
tevent_num_signals = max(tevent_num_signals, v*2)
if not conf.CONFIG_SET('USING_SYSTEM_TEVENT'):
conf.DEFINE('TEVENT_NUM_SIGNALS', tevent_num_signals)
2019-02-15 16:13:48 +13:00
conf.SAMBA_CHECK_PYTHON()
conf.SAMBA_CHECK_PYTHON_HEADERS()
2010-09-23 14:28:02 -07:00
2010-03-17 20:31:46 +11:00
conf.SAMBA_CONFIG_H()
2011-11-13 18:01:09 +01:00
conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
2010-03-17 20:31:46 +11:00
def build(bld):
2010-04-04 13:16:49 +10:00
bld.RECURSE('lib/replace')
bld.RECURSE('lib/talloc')
2010-03-17 20:31:46 +11:00
2010-03-20 22:14:24 -04:00
SRC = '''tevent.c tevent_debug.c tevent_fd.c tevent_immediate.c
2014-07-22 16:51:38 +02:00
tevent_queue.c tevent_req.c tevent_wrapper.c
2015-07-23 15:23:50 -07:00
tevent_poll.c tevent_threads.c
2010-03-17 20:31:46 +11:00
tevent_signal.c tevent_standard.c tevent_timed.c tevent_util.c tevent_wakeup.c'''
2010-03-20 22:14:24 -04:00
if bld.CONFIG_SET('HAVE_EPOLL'):
SRC += ' tevent_epoll.c'
2010-03-17 20:31:46 +11:00
2013-07-22 14:23:33 -07:00
if bld.CONFIG_SET('HAVE_SOLARIS_PORTS'):
SRC += ' tevent_port.c'
2010-10-24 11:50:47 -07:00
if bld.env.standalone_tevent:
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
private_library = False
else:
private_library = True
2010-03-28 16:38:27 +11:00
if not bld.CONFIG_SET('USING_SYSTEM_TEVENT'):
2016-08-08 11:26:37 +02:00
tevent_deps = 'replace talloc'
if bld.CONFIG_SET('HAVE_PTHREAD'):
tevent_deps += ' pthread'
2010-03-28 16:38:27 +11:00
bld.SAMBA_LIBRARY('tevent',
SRC,
2016-08-08 11:26:37 +02:00
deps=tevent_deps,
2010-03-28 16:38:27 +11:00
enabled= not bld.CONFIG_SET('USING_SYSTEM_TEVENT'),
2011-02-28 19:20:46 +01:00
includes='.',
2010-12-09 11:10:45 +11:00
abi_directory='ABI',
2010-04-18 12:47:13 +10:00
abi_match='tevent_* _tevent_*',
2010-12-09 21:58:20 +11:00
vnum=VERSION,
2016-01-04 23:01:26 +00:00
public_headers=('' if private_library else 'tevent.h'),
2011-03-03 17:19:33 +11:00
public_headers_install=not private_library,
2011-08-21 03:02:58 +02:00
pc_files='tevent.pc',
2010-10-24 11:50:47 -07:00
private_library=private_library)
2010-04-13 21:20:52 +10:00
2013-02-04 07:43:01 +01:00
if not bld.CONFIG_SET('USING_SYSTEM_PYTEVENT') and not bld.env.disable_python:
2019-02-15 16:37:48 +13:00
bld.SAMBA_PYTHON('_tevent',
'pytevent.c',
deps='tevent',
realname='_tevent.so',
cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
2015-05-22 11:52:39 +02:00
2019-02-15 16:37:48 +13:00
bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py', flat=False)
2015-05-22 11:52:39 +02:00
2011-12-06 21:18:43 +01:00
# install out various python scripts for use by make test
bld.SAMBA_SCRIPT('tevent_python',
pattern='tevent.py',
installdir='python')
2010-09-23 14:28:02 -07:00
2010-04-04 22:11:30 +10:00
def test(ctx):
'''test tevent'''
print("The tevent testsuite is part of smbtorture in samba4")
2015-11-18 02:59:37 +00:00
samba_utils.ADD_LD_LIBRARY_PATH('bin/shared')
samba_utils.ADD_LD_LIBRARY_PATH('bin/shared/private')
2015-05-26 13:25:12 +02:00
pyret = samba_utils.RUN_PYTHON_TESTS(['bindings.py'])
sys.exit(pyret)
2010-04-05 09:58:23 +10:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
2010-11-03 12:09:23 +11:00
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
samba_utils.reconfigure(ctx)