2015-07-26 13:00:47 +00:00
|
|
|
from waftools import inflector
|
2013-07-16 11:28:28 +00:00
|
|
|
from waftools.checks.generic import *
|
2013-11-29 08:01:14 +00:00
|
|
|
from waflib import Utils
|
|
|
|
import os
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2014-01-02 19:34:14 +00:00
|
|
|
__all__ = ["check_pthreads", "check_iconv", "check_lua", "check_oss_4front",
|
|
|
|
"check_cocoa"]
|
2013-07-16 11:28:28 +00:00
|
|
|
|
|
|
|
pthreads_program = load_fragment('pthreads.c')
|
|
|
|
|
2014-04-27 07:05:07 +00:00
|
|
|
def check_pthread_flag(ctx, dependency_identifier):
|
|
|
|
checks = [
|
|
|
|
check_cc(fragment = pthreads_program, cflags = '-pthread'),
|
|
|
|
check_cc(fragment = pthreads_program, cflags = '-pthread',
|
|
|
|
linkflags = '-pthread') ]
|
|
|
|
|
|
|
|
for fn in checks:
|
|
|
|
if fn(ctx, dependency_identifier):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
def check_pthreads(ctx, dependency_identifier):
|
2015-01-01 14:10:42 +00:00
|
|
|
if ctx.dependency_satisfied('win32-internal-pthreads'):
|
|
|
|
h = ctx.path.find_node('osdep/win32/include').abspath()
|
|
|
|
# define IN_WINPTHREAD to workaround mingw stupidity (we never want it
|
|
|
|
# to define features specific to its own pthread stuff)
|
2015-01-07 20:33:14 +00:00
|
|
|
ctx.env.CFLAGS += ['-isystem', h, '-I', h, '-DIN_WINPTHREAD']
|
2015-01-01 14:10:42 +00:00
|
|
|
return True
|
2014-04-27 07:05:07 +00:00
|
|
|
if check_pthread_flag(ctx, dependency_identifier):
|
|
|
|
return True
|
2013-07-16 11:28:28 +00:00
|
|
|
platform_cflags = {
|
|
|
|
'linux': '-D_REENTRANT',
|
|
|
|
'freebsd': '-D_THREAD_SAFE',
|
|
|
|
'netbsd': '-D_THREAD_SAFE',
|
|
|
|
'openbsd': '-D_THREAD_SAFE',
|
|
|
|
}.get(ctx.env.DEST_OS, '')
|
|
|
|
libs = ['pthreadGC2', 'pthread']
|
|
|
|
checkfn = check_cc(fragment=pthreads_program, cflags=platform_cflags)
|
2013-11-26 13:16:29 +00:00
|
|
|
checkfn_nocflags = check_cc(fragment=pthreads_program)
|
|
|
|
for fn in [checkfn, checkfn_nocflags]:
|
|
|
|
if check_libs(libs, fn)(ctx, dependency_identifier):
|
|
|
|
return True
|
|
|
|
return False
|
2013-07-16 11:28:28 +00:00
|
|
|
|
|
|
|
def check_iconv(ctx, dependency_identifier):
|
|
|
|
iconv_program = load_fragment('iconv.c')
|
|
|
|
libdliconv = " ".join(ctx.env.LIB_LIBDL + ['iconv'])
|
|
|
|
libs = ['iconv', libdliconv]
|
|
|
|
checkfn = check_cc(fragment=iconv_program)
|
|
|
|
return check_libs(libs, checkfn)(ctx, dependency_identifier)
|
|
|
|
|
|
|
|
def check_lua(ctx, dependency_identifier):
|
|
|
|
lua_versions = [
|
|
|
|
( '51', 'lua >= 5.1.0 lua < 5.2.0'),
|
2016-01-11 02:57:08 +00:00
|
|
|
( '51obsd', 'lua51 >= 5.1.0'), # OpenBSD
|
2013-07-16 11:28:28 +00:00
|
|
|
( '51deb', 'lua5.1 >= 5.1.0'), # debian
|
2014-01-14 22:49:26 +00:00
|
|
|
( '51fbsd', 'lua-5.1 >= 5.1.0'), # FreeBSD
|
2015-04-01 21:59:09 +00:00
|
|
|
( '52', 'lua >= 5.2.0 lua < 5.3.0' ),
|
2015-05-13 12:54:58 +00:00
|
|
|
( '52arch', 'lua52 >= 5.2.0'), # Arch
|
2013-07-16 11:28:28 +00:00
|
|
|
( '52deb', 'lua5.2 >= 5.2.0'), # debian
|
2014-01-14 22:49:26 +00:00
|
|
|
( '52fbsd', 'lua-5.2 >= 5.2.0'), # FreeBSD
|
2014-12-02 21:09:29 +00:00
|
|
|
( 'luajit', 'luajit >= 2.0.0' ),
|
2013-07-16 11:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if ctx.options.LUA_VER:
|
|
|
|
lua_versions = \
|
|
|
|
[lv for lv in lua_versions if lv[0] == ctx.options.LUA_VER]
|
|
|
|
|
|
|
|
for lua_version, pkgconfig_query in lua_versions:
|
2014-10-25 18:07:44 +00:00
|
|
|
if check_pkg_config(pkgconfig_query, uselib_store=lua_version) \
|
|
|
|
(ctx, dependency_identifier):
|
2013-07-16 11:28:28 +00:00
|
|
|
# XXX: this is a bit of a hack, ask waf developers if I can copy
|
|
|
|
# the uselib_store to 'lua'
|
|
|
|
ctx.mark_satisfied(lua_version)
|
|
|
|
ctx.add_optional_message(dependency_identifier,
|
|
|
|
'version found: ' + lua_version)
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2013-11-29 08:01:14 +00:00
|
|
|
def __get_osslibdir():
|
2013-11-26 20:32:38 +00:00
|
|
|
cmd = ['sh', '-c', '. /etc/oss.conf && echo $OSSLIBDIR']
|
|
|
|
p = Utils.subprocess.Popen(cmd, stdin=Utils.subprocess.PIPE,
|
|
|
|
stdout=Utils.subprocess.PIPE,
|
|
|
|
stderr=Utils.subprocess.PIPE)
|
|
|
|
return p.communicate()[0].decode().rstrip()
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-11-29 08:01:14 +00:00
|
|
|
def check_oss_4front(ctx, dependency_identifier):
|
|
|
|
oss_libdir = __get_osslibdir()
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-12-07 15:58:22 +00:00
|
|
|
# avoid false positive from native sys/soundcard.h
|
|
|
|
if not oss_libdir:
|
2015-07-26 13:00:47 +00:00
|
|
|
ctx.undefine(inflector.define_key(dependency_identifier))
|
2013-12-07 15:58:22 +00:00
|
|
|
return False
|
|
|
|
|
2013-11-29 08:01:14 +00:00
|
|
|
soundcard_h = os.path.join(oss_libdir, "include/sys/soundcard.h")
|
|
|
|
include_dir = os.path.join(oss_libdir, "include")
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-11-29 08:01:14 +00:00
|
|
|
fn = check_cc(header_name=soundcard_h,
|
|
|
|
defines=['PATH_DEV_DSP="/dev/dsp"',
|
|
|
|
'PATH_DEV_MIXER="/dev/mixer"'],
|
|
|
|
cflags='-I{0}'.format(include_dir),
|
|
|
|
fragment=load_fragment('oss_audio.c'))
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-11-29 08:01:14 +00:00
|
|
|
return fn(ctx, dependency_identifier)
|
2014-01-02 19:34:14 +00:00
|
|
|
|
|
|
|
def check_cocoa(ctx, dependency_identifier):
|
|
|
|
fn = check_cc(
|
|
|
|
fragment = load_fragment('cocoa.m'),
|
|
|
|
compile_filename = 'test.m',
|
2015-02-25 21:13:07 +00:00
|
|
|
framework_name = ['Cocoa', 'IOKit', 'OpenGL', 'QuartzCore'],
|
2014-01-02 19:34:14 +00:00
|
|
|
includes = ctx.srcnode.abspath(),
|
|
|
|
linkflags = '-fobjc-arc')
|
|
|
|
|
|
|
|
return fn(ctx, dependency_identifier)
|