jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

916 lines
30KB

  1. #! /usr/bin/python3
  2. # encoding: utf-8
  3. from __future__ import print_function
  4. import os
  5. import shutil
  6. import sys
  7. from waflib import Logs, Options, TaskGen
  8. from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext
  9. # see also common/JackConstants.h
  10. VERSION = '1.9.22'
  11. APPNAME = 'jack'
  12. JACK_API_VERSION = '0.1.0'
  13. # these variables are mandatory ('/' are converted automatically)
  14. top = '.'
  15. out = 'build'
  16. # lib32 variant name used when building in mixed mode
  17. lib32 = 'lib32'
  18. def display_feature(conf, msg, build):
  19. if build:
  20. conf.msg(msg, 'yes', color='GREEN')
  21. else:
  22. conf.msg(msg, 'no', color='YELLOW')
  23. def check_for_celt(conf):
  24. found = False
  25. for version in ['11', '8', '7', '5']:
  26. define = 'HAVE_CELT_API_0_' + version
  27. if not found:
  28. try:
  29. conf.check_cfg(
  30. package='celt >= 0.%s.0' % version,
  31. args='--cflags --libs')
  32. found = True
  33. conf.define(define, 1)
  34. continue
  35. except conf.errors.ConfigurationError:
  36. pass
  37. conf.define(define, 0)
  38. if not found:
  39. raise conf.errors.ConfigurationError
  40. def options(opt):
  41. # options provided by the modules
  42. opt.load('compiler_cxx')
  43. opt.load('compiler_c')
  44. opt.load('autooptions')
  45. opt.load('xcode6')
  46. opt.recurse('compat')
  47. # install directories
  48. opt.add_option(
  49. '--htmldir',
  50. type='string',
  51. default=None,
  52. help='HTML documentation directory [Default: <prefix>/share/jack-audio-connection-kit/reference/html/',
  53. )
  54. opt.add_option('--libdir', type='string', help='Library directory [Default: <prefix>/lib]')
  55. opt.add_option('--libdir32', type='string', help='32bit Library directory [Default: <prefix>/lib32]')
  56. opt.add_option('--pkgconfigdir', type='string', help='pkg-config file directory [Default: <libdir>/pkgconfig]')
  57. opt.add_option('--mandir', type='string', help='Manpage directory [Default: <prefix>/share/man/man1]')
  58. # options affecting binaries
  59. opt.add_option(
  60. '--platform',
  61. type='string',
  62. default=sys.platform,
  63. help='Target platform for cross-compiling, e.g. cygwin or win32',
  64. )
  65. opt.add_option('--mixed', action='store_true', default=False, help='Build with 32/64 bits mixed mode')
  66. opt.add_option('--debug', action='store_true', default=False, dest='debug', help='Build debuggable binaries')
  67. opt.add_option(
  68. '--static',
  69. action='store_true',
  70. default=False,
  71. dest='static',
  72. help='Build static binaries (Windows only)',
  73. )
  74. # options affecting general jack functionality
  75. opt.add_option(
  76. '--classic',
  77. action='store_true',
  78. default=False,
  79. help='Force enable standard JACK (jackd) even if D-Bus JACK (jackdbus) is enabled too',
  80. )
  81. opt.add_option('--dbus', action='store_true', default=False, help='Enable D-Bus JACK (jackdbus)')
  82. opt.add_option(
  83. '--autostart',
  84. type='string',
  85. default='default',
  86. help='Autostart method. Possible values: "default", "classic", "dbus", "none"',
  87. )
  88. opt.add_option('--profile', action='store_true', default=False, help='Build with engine profiling')
  89. opt.add_option('--clients', default=256, type='int', dest='clients', help='Maximum number of JACK clients')
  90. opt.add_option(
  91. '--ports-per-application',
  92. default=2048,
  93. type='int',
  94. dest='application_ports',
  95. help='Maximum number of ports per application',
  96. )
  97. opt.add_option('--systemd-unit', action='store_true', default=False, help='Install systemd units.')
  98. opt.set_auto_options_define('HAVE_%s')
  99. opt.set_auto_options_style('yesno_and_hack')
  100. # options with third party dependencies
  101. doxygen = opt.add_auto_option(
  102. 'doxygen',
  103. help='Build doxygen documentation',
  104. conf_dest='BUILD_DOXYGEN_DOCS',
  105. default=False)
  106. doxygen.find_program('doxygen')
  107. alsa = opt.add_auto_option(
  108. 'alsa',
  109. help='Enable ALSA driver',
  110. conf_dest='BUILD_DRIVER_ALSA')
  111. alsa.check_cfg(
  112. package='alsa >= 1.0.18',
  113. args='--cflags --libs')
  114. firewire = opt.add_auto_option(
  115. 'firewire',
  116. help='Enable FireWire driver (FFADO)',
  117. conf_dest='BUILD_DRIVER_FFADO')
  118. firewire.check_cfg(
  119. package='libffado >= 1.999.17',
  120. args='--cflags --libs')
  121. iio = opt.add_auto_option(
  122. 'iio',
  123. help='Enable IIO driver',
  124. conf_dest='BUILD_DRIVER_IIO')
  125. iio.check_cfg(
  126. package='gtkIOStream >= 1.4.0',
  127. args='--cflags --libs')
  128. iio.check_cfg(
  129. package='eigen3 >= 3.1.2',
  130. args='--cflags --libs')
  131. portaudio = opt.add_auto_option(
  132. 'portaudio',
  133. help='Enable Portaudio driver',
  134. conf_dest='BUILD_DRIVER_PORTAUDIO')
  135. portaudio.check(header_name='windows.h') # only build portaudio on windows
  136. portaudio.check_cfg(
  137. package='portaudio-2.0 >= 19',
  138. uselib_store='PORTAUDIO',
  139. args='--cflags --libs')
  140. winmme = opt.add_auto_option(
  141. 'winmme',
  142. help='Enable WinMME driver',
  143. conf_dest='BUILD_DRIVER_WINMME')
  144. winmme.check(
  145. header_name=['windows.h', 'mmsystem.h'],
  146. msg='Checking for header mmsystem.h')
  147. celt = opt.add_auto_option(
  148. 'celt',
  149. help='Build with CELT')
  150. celt.add_function(check_for_celt)
  151. opt.add_auto_option(
  152. 'tests',
  153. help='Build tests',
  154. conf_dest='BUILD_TESTS',
  155. default=False,
  156. )
  157. # Suffix _PKG to not collide with HAVE_OPUS defined by the option.
  158. opus = opt.add_auto_option(
  159. 'opus',
  160. help='Build Opus netjack2')
  161. opus.check(header_name='opus/opus_custom.h')
  162. opus.check_cfg(
  163. package='opus >= 0.9.0',
  164. args='--cflags --libs',
  165. define_name='HAVE_OPUS_PKG')
  166. samplerate = opt.add_auto_option(
  167. 'samplerate',
  168. help='Build with libsamplerate')
  169. samplerate.check_cfg(
  170. package='samplerate',
  171. args='--cflags --libs')
  172. sd = opt.add_auto_option(
  173. 'systemd',
  174. help='Use systemd notify')
  175. sd.check(header_name='systemd/sd-daemon.h')
  176. sd.check(lib='systemd')
  177. db = opt.add_auto_option(
  178. 'db',
  179. help='Use Berkeley DB (metadata)')
  180. db.check(header_name='db.h')
  181. db.check(lib='db')
  182. libdbus = opt.add_auto_option(
  183. 'libdbus',
  184. help='Build with DBus device reservation')
  185. libdbus.check_cfg(
  186. package='dbus-1 >= 1.0.0',
  187. args='--cflags --libs')
  188. # dbus options
  189. opt.recurse('dbus')
  190. # this must be called before the configure phase
  191. opt.apply_auto_options_hack()
  192. def detect_platform(conf):
  193. # GNU/kFreeBSD and GNU/Hurd are treated as Linux
  194. platforms = [
  195. # ('KEY, 'Human readable name', ['strings', 'to', 'check', 'for'])
  196. ('IS_LINUX', 'Linux', ['gnu0', 'gnukfreebsd', 'linux', 'posix']),
  197. ('IS_FREEBSD', 'FreeBSD', ['freebsd']),
  198. ('IS_MACOSX', 'MacOS X', ['darwin']),
  199. ('IS_SUN', 'SunOS', ['sunos']),
  200. ('IS_WINDOWS', 'Windows', ['cygwin', 'msys', 'win32'])
  201. ]
  202. for key, name, strings in platforms:
  203. conf.env[key] = False
  204. conf.start_msg('Checking platform')
  205. platform = Options.options.platform
  206. for key, name, strings in platforms:
  207. for s in strings:
  208. if platform.startswith(s):
  209. conf.env[key] = True
  210. conf.end_msg(name, color='CYAN')
  211. break
  212. def configure(conf):
  213. conf.load('compiler_cxx')
  214. conf.load('compiler_c')
  215. detect_platform(conf)
  216. if conf.env['IS_WINDOWS']:
  217. conf.env.append_unique('CCDEFINES', '_POSIX')
  218. conf.env.append_unique('CXXDEFINES', '_POSIX')
  219. if Options.options.platform in ('msys', 'win32'):
  220. conf.env.append_value('INCLUDES', ['/mingw64/include'])
  221. conf.check(
  222. header_name='pa_asio.h',
  223. msg='Checking for PortAudio ASIO support',
  224. define_name='HAVE_ASIO',
  225. mandatory=False)
  226. conf.env.append_unique('CFLAGS', '-Wall')
  227. conf.env.append_unique('CXXFLAGS', ['-Wall', '-Wno-invalid-offsetof'])
  228. conf.env.append_unique('CXXFLAGS', '-std=gnu++11')
  229. if conf.env['IS_FREEBSD']:
  230. conf.check(lib='execinfo', uselib='EXECINFO', define_name='EXECINFO')
  231. conf.check_cfg(package='libsysinfo', args='--cflags --libs')
  232. if not conf.env['IS_MACOSX']:
  233. conf.env.append_unique('LDFLAGS', '-Wl,--no-undefined')
  234. else:
  235. conf.check(lib='aften', uselib='AFTEN', define_name='AFTEN')
  236. conf.check_cxx(
  237. fragment=''
  238. + '#include <aften/aften.h>\n'
  239. + 'int\n'
  240. + 'main(void)\n'
  241. + '{\n'
  242. + 'AftenContext fAftenContext;\n'
  243. + 'aften_set_defaults(&fAftenContext);\n'
  244. + 'unsigned char *fb;\n'
  245. + 'float *buf=new float[10];\n'
  246. + 'int res = aften_encode_frame(&fAftenContext, fb, buf, 1);\n'
  247. + '}\n',
  248. lib='aften',
  249. msg='Checking for aften_encode_frame()',
  250. define_name='HAVE_AFTEN_NEW_API',
  251. mandatory=False)
  252. # TODO
  253. conf.env.append_unique('CXXFLAGS', '-Wno-deprecated-register')
  254. conf.load('autooptions')
  255. conf.recurse('compat')
  256. # Check for functions.
  257. conf.check(
  258. fragment=''
  259. + '#define _GNU_SOURCE\n'
  260. + '#include <poll.h>\n'
  261. + '#include <signal.h>\n'
  262. + '#include <stddef.h>\n'
  263. + 'int\n'
  264. + 'main(void)\n'
  265. + '{\n'
  266. + ' ppoll(NULL, 0, NULL, NULL);\n'
  267. + '}\n',
  268. msg='Checking for ppoll',
  269. define_name='HAVE_PPOLL',
  270. mandatory=False)
  271. # Check for backtrace support
  272. conf.check(
  273. header_name='execinfo.h',
  274. define_name='HAVE_EXECINFO_H',
  275. mandatory=False)
  276. conf.recurse('common')
  277. if Options.options.dbus:
  278. conf.recurse('dbus')
  279. if not conf.env['BUILD_JACKDBUS']:
  280. conf.fatal('jackdbus was explicitly requested but cannot be built')
  281. if conf.env['IS_LINUX']:
  282. if Options.options.systemd_unit:
  283. conf.recurse('systemd')
  284. else:
  285. conf.env['SYSTEMD_USER_UNIT_DIR'] = None
  286. # test for the availability of ucontext, and how it should be used
  287. for t in ['gp_regs', 'uc_regs', 'mc_gregs', 'gregs']:
  288. fragment = '#include <ucontext.h>\n'
  289. fragment += 'int main() { ucontext_t *ucontext; return (int) ucontext->uc_mcontext.%s[0]; }' % t
  290. confvar = 'HAVE_UCONTEXT_%s' % t.upper()
  291. conf.check_cc(fragment=fragment, define_name=confvar, mandatory=False,
  292. msg='Checking for ucontext->uc_mcontext.%s' % t)
  293. if conf.is_defined(confvar):
  294. conf.define('HAVE_UCONTEXT', 1)
  295. fragment = '#include <ucontext.h>\n'
  296. fragment += 'int main() { return NGREG; }'
  297. conf.check_cc(fragment=fragment, define_name='HAVE_NGREG', mandatory=False,
  298. msg='Checking for NGREG')
  299. conf.env['LIB_PTHREAD'] = ['pthread']
  300. conf.env['LIB_DL'] = ['dl']
  301. conf.env['LIB_RT'] = ['rt']
  302. conf.env['LIB_M'] = ['m']
  303. conf.env['LIB_STDC++'] = ['stdc++']
  304. conf.env['JACK_API_VERSION'] = JACK_API_VERSION
  305. conf.env['JACK_VERSION'] = VERSION
  306. conf.env['BUILD_WITH_PROFILE'] = Options.options.profile
  307. conf.env['BUILD_WITH_32_64'] = Options.options.mixed
  308. conf.env['BUILD_CLASSIC'] = Options.options.classic
  309. conf.env['BUILD_DEBUG'] = Options.options.debug
  310. conf.env['BUILD_STATIC'] = Options.options.static
  311. if conf.env['BUILD_JACKDBUS']:
  312. conf.env['BUILD_JACKD'] = conf.env['BUILD_CLASSIC']
  313. else:
  314. conf.env['BUILD_JACKD'] = True
  315. conf.env['BINDIR'] = conf.env['PREFIX'] + '/bin'
  316. if Options.options.htmldir:
  317. conf.env['HTMLDIR'] = Options.options.htmldir
  318. else:
  319. # set to None here so that the doxygen code can find out the highest
  320. # directory to remove upon install
  321. conf.env['HTMLDIR'] = None
  322. if Options.options.libdir:
  323. conf.env['LIBDIR'] = Options.options.libdir
  324. else:
  325. conf.env['LIBDIR'] = conf.env['PREFIX'] + '/lib'
  326. if Options.options.pkgconfigdir:
  327. conf.env['PKGCONFDIR'] = Options.options.pkgconfigdir
  328. else:
  329. conf.env['PKGCONFDIR'] = conf.env['LIBDIR'] + '/pkgconfig'
  330. if Options.options.mandir:
  331. conf.env['MANDIR'] = Options.options.mandir
  332. else:
  333. conf.env['MANDIR'] = conf.env['PREFIX'] + '/share/man/man1'
  334. if conf.env['BUILD_DEBUG']:
  335. conf.env.append_unique('CXXFLAGS', '-g')
  336. conf.env.append_unique('CFLAGS', '-g')
  337. conf.env.append_unique('LINKFLAGS', '-g')
  338. if Options.options.autostart not in ['default', 'classic', 'dbus', 'none']:
  339. conf.fatal('Invalid autostart value "' + Options.options.autostart + '"')
  340. if Options.options.autostart == 'default':
  341. if conf.env['BUILD_JACKD']:
  342. conf.env['AUTOSTART_METHOD'] = 'classic'
  343. else:
  344. conf.env['AUTOSTART_METHOD'] = 'dbus'
  345. else:
  346. conf.env['AUTOSTART_METHOD'] = Options.options.autostart
  347. if conf.env['AUTOSTART_METHOD'] == 'dbus' and not conf.env['BUILD_JACKDBUS']:
  348. conf.fatal('D-Bus autostart mode was specified but jackdbus will not be built')
  349. if conf.env['AUTOSTART_METHOD'] == 'classic' and not conf.env['BUILD_JACKD']:
  350. conf.fatal('Classic autostart mode was specified but jackd will not be built')
  351. if conf.env['AUTOSTART_METHOD'] == 'dbus':
  352. conf.define('USE_LIBDBUS_AUTOLAUNCH', 1)
  353. elif conf.env['AUTOSTART_METHOD'] == 'classic':
  354. conf.define('USE_CLASSIC_AUTOLAUNCH', 1)
  355. conf.define('CLIENT_NUM', Options.options.clients)
  356. conf.define('PORT_NUM_FOR_CLIENT', Options.options.application_ports)
  357. if conf.env['IS_WINDOWS']:
  358. # we define this in the environment to maintain compatibility with
  359. # existing install paths that use ADDON_DIR rather than have to
  360. # have special cases for windows each time.
  361. conf.env['ADDON_DIR'] = conf.env['LIBDIR'] + '/jack'
  362. if Options.options.platform in ('msys', 'win32'):
  363. conf.define('ADDON_DIR', 'jack')
  364. conf.define('__STDC_FORMAT_MACROS', 1) # for PRIu64
  365. else:
  366. # don't define ADDON_DIR in config.h, use the default 'jack'
  367. # defined in windows/JackPlatformPlug_os.h
  368. pass
  369. else:
  370. conf.env['ADDON_DIR'] = os.path.normpath(os.path.join(conf.env['LIBDIR'], 'jack'))
  371. conf.define('ADDON_DIR', conf.env['ADDON_DIR'])
  372. conf.define('JACK_LOCATION', os.path.normpath(os.path.join(conf.env['PREFIX'], 'bin')))
  373. if not conf.env['IS_WINDOWS']:
  374. conf.define('USE_POSIX_SHM', 1)
  375. conf.define('JACKMP', 1)
  376. if conf.env['BUILD_JACKDBUS']:
  377. conf.define('JACK_DBUS', 1)
  378. if conf.env['BUILD_WITH_PROFILE']:
  379. conf.define('JACK_MONITOR', 1)
  380. conf.write_config_header('config.h', remove=False)
  381. if Options.options.mixed:
  382. conf.setenv(lib32, env=conf.env.derive())
  383. conf.env.append_unique('CFLAGS', '-m32')
  384. conf.env.append_unique('CXXFLAGS', '-m32')
  385. conf.env.append_unique('CXXFLAGS', '-DBUILD_WITH_32_64')
  386. conf.env.append_unique('LINKFLAGS', '-m32')
  387. if Options.options.libdir32:
  388. conf.env['LIBDIR'] = Options.options.libdir32
  389. else:
  390. conf.env['LIBDIR'] = conf.env['PREFIX'] + '/lib32'
  391. if conf.env['IS_WINDOWS'] and conf.env['BUILD_STATIC']:
  392. def replaceFor32bit(env):
  393. for e in env:
  394. yield e.replace('x86_64', 'i686', 1)
  395. for env in ('AR', 'CC', 'CXX', 'LINK_CC', 'LINK_CXX'):
  396. conf.all_envs[lib32][env] = list(replaceFor32bit(conf.all_envs[lib32][env]))
  397. conf.all_envs[lib32]['LIB_REGEX'] = ['tre32']
  398. # libdb does not work in mixed mode
  399. conf.all_envs[lib32]['HAVE_DB'] = 0
  400. conf.all_envs[lib32]['HAVE_DB_H'] = 0
  401. conf.all_envs[lib32]['LIB_DB'] = []
  402. # no need for opus in 32bit mixed mode clients
  403. conf.all_envs[lib32]['LIB_OPUS'] = []
  404. # someone tell me where this file gets written please..
  405. conf.write_config_header('config.h')
  406. print()
  407. print('JACK ' + VERSION)
  408. conf.msg('Maximum JACK clients', Options.options.clients, color='NORMAL')
  409. conf.msg('Maximum ports per application', Options.options.application_ports, color='NORMAL')
  410. conf.msg('Install prefix', conf.env['PREFIX'], color='CYAN')
  411. conf.msg('Library directory', conf.all_envs['']['LIBDIR'], color='CYAN')
  412. if conf.env['BUILD_WITH_32_64']:
  413. conf.msg('32-bit library directory', conf.all_envs[lib32]['LIBDIR'], color='CYAN')
  414. conf.msg('Drivers directory', conf.env['ADDON_DIR'], color='CYAN')
  415. display_feature(conf, 'Build debuggable binaries', conf.env['BUILD_DEBUG'])
  416. tool_flags = [
  417. ('C compiler flags', ['CFLAGS', 'CPPFLAGS']),
  418. ('C++ compiler flags', ['CXXFLAGS', 'CPPFLAGS']),
  419. ('Linker flags', ['LINKFLAGS', 'LDFLAGS'])
  420. ]
  421. for name, vars in tool_flags:
  422. flags = []
  423. for var in vars:
  424. flags += conf.all_envs[''][var]
  425. conf.msg(name, repr(flags), color='NORMAL')
  426. if conf.env['BUILD_WITH_32_64']:
  427. conf.msg('32-bit C compiler flags', repr(conf.all_envs[lib32]['CFLAGS']))
  428. conf.msg('32-bit C++ compiler flags', repr(conf.all_envs[lib32]['CXXFLAGS']))
  429. conf.msg('32-bit linker flags', repr(conf.all_envs[lib32]['LINKFLAGS']))
  430. display_feature(conf, 'Build with engine profiling', conf.env['BUILD_WITH_PROFILE'])
  431. display_feature(conf, 'Build with 32/64 bits mixed mode', conf.env['BUILD_WITH_32_64'])
  432. display_feature(conf, 'Build standard JACK (jackd)', conf.env['BUILD_JACKD'])
  433. display_feature(conf, 'Build D-Bus JACK (jackdbus)', conf.env['BUILD_JACKDBUS'])
  434. conf.msg('Autostart method', conf.env['AUTOSTART_METHOD'])
  435. if conf.env['BUILD_JACKDBUS'] and conf.env['BUILD_JACKD']:
  436. print(Logs.colors.RED + 'WARNING !! mixing both jackd and jackdbus may cause issues:' + Logs.colors.NORMAL)
  437. print(Logs.colors.RED + 'WARNING !! jackdbus does not use .jackdrc nor qjackctl settings' + Logs.colors.NORMAL)
  438. conf.summarize_auto_options()
  439. if conf.env['BUILD_JACKDBUS']:
  440. conf.msg('D-Bus service install directory', conf.env['DBUS_SERVICES_DIR'], color='CYAN')
  441. if conf.env['DBUS_SERVICES_DIR'] != conf.env['DBUS_SERVICES_DIR_REAL']:
  442. print()
  443. print(Logs.colors.RED + 'WARNING: D-Bus session services directory as reported by pkg-config is')
  444. print(Logs.colors.RED + 'WARNING:', end=' ')
  445. print(Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR_REAL'])
  446. print(Logs.colors.RED + 'WARNING: but service file will be installed in')
  447. print(Logs.colors.RED + 'WARNING:', end=' ')
  448. print(Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR'])
  449. print(
  450. Logs.colors.RED + 'WARNING: You may need to adjust your D-Bus configuration after installing jackdbus'
  451. )
  452. print('WARNING: You can override dbus service install directory')
  453. print('WARNING: with --enable-pkg-config-dbus-service-dir option to this script')
  454. print(Logs.colors.NORMAL, end=' ')
  455. print()
  456. def init(ctx):
  457. for y in (BuildContext, CleanContext, InstallContext, UninstallContext):
  458. name = y.__name__.replace('Context', '').lower()
  459. class tmp(y):
  460. cmd = name + '_' + lib32
  461. variant = lib32
  462. def obj_add_includes(bld, obj):
  463. if bld.env['BUILD_JACKDBUS'] or bld.env['HAVE_DBUS_1']:
  464. obj.includes += ['dbus']
  465. if bld.env['IS_LINUX']:
  466. obj.includes += ['linux', 'posix']
  467. if bld.env['IS_FREEBSD']:
  468. obj.includes += ['freebsd', 'posix']
  469. if bld.env['IS_MACOSX']:
  470. obj.includes += ['macosx', 'posix']
  471. if bld.env['IS_SUN']:
  472. obj.includes += ['posix', 'solaris']
  473. if bld.env['IS_WINDOWS']:
  474. obj.includes += ['windows']
  475. # FIXME: Is SERVER_SIDE needed?
  476. def build_jackd(bld):
  477. jackd = bld(
  478. features=['cxx', 'cxxprogram'],
  479. defines=['HAVE_CONFIG_H', 'SERVER_SIDE'],
  480. includes=['.', 'common', 'common/jack'],
  481. target='jackd',
  482. source=['common/Jackdmp.cpp'],
  483. use=['serverlib', 'SYSTEMD']
  484. )
  485. if bld.env['BUILD_JACKDBUS'] or bld.env['HAVE_DBUS_1']:
  486. jackd.source += ['dbus/audio_reserve.c', 'dbus/reserve.c']
  487. jackd.use += ['DBUS-1']
  488. if bld.env['IS_LINUX']:
  489. jackd.use += ['DL', 'M', 'PTHREAD', 'RT', 'STDC++']
  490. if bld.env['IS_FREEBSD']:
  491. jackd.use += ['M', 'PTHREAD']
  492. if bld.env['IS_MACOSX']:
  493. jackd.use += ['DL', 'PTHREAD']
  494. jackd.framework = ['CoreFoundation']
  495. if bld.env['IS_SUN']:
  496. jackd.use += ['DL', 'PTHREAD']
  497. obj_add_includes(bld, jackd)
  498. return jackd
  499. # FIXME: Is SERVER_SIDE needed?
  500. def create_driver_obj(bld, **kw):
  501. if 'use' in kw:
  502. kw['use'] += ['serverlib']
  503. else:
  504. kw['use'] = ['serverlib']
  505. driver = bld(
  506. features=['c', 'cxx', 'cshlib', 'cxxshlib'],
  507. defines=['HAVE_CONFIG_H', 'SERVER_SIDE'],
  508. includes=['.', 'common', 'common/jack'],
  509. install_path='${ADDON_DIR}/',
  510. **kw)
  511. if bld.env['IS_WINDOWS']:
  512. driver.env['cxxshlib_PATTERN'] = 'jack_%s.dll'
  513. else:
  514. driver.env['cxxshlib_PATTERN'] = 'jack_%s.so'
  515. obj_add_includes(bld, driver)
  516. return driver
  517. def build_drivers(bld):
  518. # Non-hardware driver sources. Lexically sorted.
  519. dummy_src = [
  520. 'common/JackDummyDriver.cpp'
  521. ]
  522. loopback_src = [
  523. 'common/JackLoopbackDriver.cpp'
  524. ]
  525. net_src = [
  526. 'common/JackNetDriver.cpp'
  527. ]
  528. netone_src = [
  529. 'common/JackNetOneDriver.cpp',
  530. 'common/netjack.c',
  531. 'common/netjack_packet.c'
  532. ]
  533. proxy_src = [
  534. 'common/JackProxyDriver.cpp'
  535. ]
  536. # Hardware driver sources. Lexically sorted.
  537. alsa_src = [
  538. 'common/memops.c',
  539. 'linux/alsa/JackAlsaDriver.cpp',
  540. 'linux/alsa/alsa_rawmidi.c',
  541. 'linux/alsa/alsa_seqmidi.c',
  542. 'linux/alsa/alsa_midi_jackmp.cpp',
  543. 'linux/alsa/generic_hw.c',
  544. 'linux/alsa/hdsp.c',
  545. 'linux/alsa/alsa_driver.c',
  546. 'linux/alsa/hammerfall.c',
  547. 'linux/alsa/ice1712.c'
  548. ]
  549. alsarawmidi_src = [
  550. 'linux/alsarawmidi/JackALSARawMidiDriver.cpp',
  551. 'linux/alsarawmidi/JackALSARawMidiInputPort.cpp',
  552. 'linux/alsarawmidi/JackALSARawMidiOutputPort.cpp',
  553. 'linux/alsarawmidi/JackALSARawMidiPort.cpp',
  554. 'linux/alsarawmidi/JackALSARawMidiReceiveQueue.cpp',
  555. 'linux/alsarawmidi/JackALSARawMidiSendQueue.cpp',
  556. 'linux/alsarawmidi/JackALSARawMidiUtil.cpp'
  557. ]
  558. boomer_src = [
  559. 'common/memops.c',
  560. 'solaris/oss/JackBoomerDriver.cpp'
  561. ]
  562. coreaudio_src = [
  563. 'macosx/coreaudio/JackCoreAudioDriver.mm',
  564. 'common/JackAC3Encoder.cpp'
  565. ]
  566. coremidi_src = [
  567. 'macosx/coremidi/JackCoreMidiInputPort.mm',
  568. 'macosx/coremidi/JackCoreMidiOutputPort.mm',
  569. 'macosx/coremidi/JackCoreMidiPhysicalInputPort.mm',
  570. 'macosx/coremidi/JackCoreMidiPhysicalOutputPort.mm',
  571. 'macosx/coremidi/JackCoreMidiVirtualInputPort.mm',
  572. 'macosx/coremidi/JackCoreMidiVirtualOutputPort.mm',
  573. 'macosx/coremidi/JackCoreMidiPort.mm',
  574. 'macosx/coremidi/JackCoreMidiUtil.mm',
  575. 'macosx/coremidi/JackCoreMidiDriver.mm'
  576. ]
  577. ffado_src = [
  578. 'linux/firewire/JackFFADODriver.cpp',
  579. 'linux/firewire/JackFFADOMidiInputPort.cpp',
  580. 'linux/firewire/JackFFADOMidiOutputPort.cpp',
  581. 'linux/firewire/JackFFADOMidiReceiveQueue.cpp',
  582. 'linux/firewire/JackFFADOMidiSendQueue.cpp'
  583. ]
  584. freebsd_oss_src = [
  585. 'common/memops.c',
  586. 'freebsd/oss/JackOSSDriver.cpp'
  587. ]
  588. iio_driver_src = [
  589. 'linux/iio/JackIIODriver.cpp'
  590. ]
  591. oss_src = [
  592. 'common/memops.c',
  593. 'solaris/oss/JackOSSDriver.cpp'
  594. ]
  595. portaudio_src = [
  596. 'windows/portaudio/JackPortAudioDevices.cpp',
  597. 'windows/portaudio/JackPortAudioDriver.cpp',
  598. ]
  599. winmme_src = [
  600. 'windows/winmme/JackWinMMEDriver.cpp',
  601. 'windows/winmme/JackWinMMEInputPort.cpp',
  602. 'windows/winmme/JackWinMMEOutputPort.cpp',
  603. 'windows/winmme/JackWinMMEPort.cpp',
  604. ]
  605. # Create non-hardware driver objects. Lexically sorted.
  606. create_driver_obj(
  607. bld,
  608. target='dummy',
  609. source=dummy_src)
  610. create_driver_obj(
  611. bld,
  612. target='loopback',
  613. source=loopback_src)
  614. create_driver_obj(
  615. bld,
  616. target='net',
  617. source=net_src,
  618. use=['CELT'])
  619. create_driver_obj(
  620. bld,
  621. target='netone',
  622. source=netone_src,
  623. use=['SAMPLERATE', 'CELT'])
  624. create_driver_obj(
  625. bld,
  626. target='proxy',
  627. source=proxy_src)
  628. # Create hardware driver objects. Lexically sorted after the conditional,
  629. # e.g. BUILD_DRIVER_ALSA.
  630. if bld.env['BUILD_DRIVER_ALSA']:
  631. create_driver_obj(
  632. bld,
  633. target='alsa',
  634. source=alsa_src,
  635. use=['ALSA'])
  636. create_driver_obj(
  637. bld,
  638. target='alsarawmidi',
  639. source=alsarawmidi_src,
  640. use=['ALSA'])
  641. if bld.env['BUILD_DRIVER_FFADO']:
  642. create_driver_obj(
  643. bld,
  644. target='firewire',
  645. source=ffado_src,
  646. use=['LIBFFADO'])
  647. if bld.env['BUILD_DRIVER_IIO']:
  648. create_driver_obj(
  649. bld,
  650. target='iio',
  651. source=iio_driver_src,
  652. use=['GTKIOSTREAM', 'EIGEN3'])
  653. if bld.env['BUILD_DRIVER_PORTAUDIO']:
  654. create_driver_obj(
  655. bld,
  656. target='portaudio',
  657. source=portaudio_src,
  658. use=['PORTAUDIO'])
  659. if bld.env['BUILD_DRIVER_WINMME']:
  660. create_driver_obj(
  661. bld,
  662. target='winmme',
  663. source=winmme_src,
  664. use=['WINMME'])
  665. if bld.env['IS_MACOSX']:
  666. create_driver_obj(
  667. bld,
  668. target='coreaudio',
  669. source=coreaudio_src,
  670. use=['AFTEN'],
  671. framework=['AudioUnit', 'CoreAudio', 'CoreServices'])
  672. create_driver_obj(
  673. bld,
  674. target='coremidi',
  675. source=coremidi_src,
  676. use=['serverlib'], # FIXME: Is this needed?
  677. framework=['AudioUnit', 'CoreMIDI', 'CoreServices', 'Foundation'])
  678. if bld.env['IS_FREEBSD']:
  679. create_driver_obj(
  680. bld,
  681. target='oss',
  682. source=freebsd_oss_src)
  683. if bld.env['IS_SUN']:
  684. create_driver_obj(
  685. bld,
  686. target='boomer',
  687. source=boomer_src)
  688. create_driver_obj(
  689. bld,
  690. target='oss',
  691. source=oss_src)
  692. def build(bld):
  693. if not bld.variant and bld.env['BUILD_WITH_32_64']:
  694. Options.commands.append(bld.cmd + '_' + lib32)
  695. # process subfolders from here
  696. bld.recurse('common')
  697. if bld.variant:
  698. # only the wscript in common/ knows how to handle variants
  699. return
  700. bld.recurse('compat')
  701. if bld.env['BUILD_JACKD']:
  702. build_jackd(bld)
  703. build_drivers(bld)
  704. if bld.env['IS_LINUX'] or bld.env['IS_FREEBSD']:
  705. bld.recurse('man')
  706. bld.recurse('systemd')
  707. if not bld.env['IS_WINDOWS'] and bld.env['BUILD_TESTS']:
  708. bld.recurse('tests')
  709. if bld.env['BUILD_JACKDBUS']:
  710. bld.recurse('dbus')
  711. if bld.env['BUILD_DOXYGEN_DOCS']:
  712. html_build_dir = bld.path.find_or_declare('html').abspath()
  713. bld(
  714. features='subst',
  715. source='doxyfile.in',
  716. target='doxyfile',
  717. HTML_BUILD_DIR=html_build_dir,
  718. SRCDIR=bld.srcnode.abspath(),
  719. VERSION=VERSION
  720. )
  721. # There are two reasons for logging to doxygen.log and using it as
  722. # target in the build rule (rather than html_build_dir):
  723. # (1) reduce the noise when running the build
  724. # (2) waf has a regular file to check for a timestamp. If the directory
  725. # is used instead waf will rebuild the doxygen target (even upon
  726. # install).
  727. def doxygen(task):
  728. doxyfile = task.inputs[0].abspath()
  729. logfile = task.outputs[0].abspath()
  730. cmd = '%s %s &> %s' % (task.env['DOXYGEN'][0], doxyfile, logfile)
  731. return task.exec_command(cmd)
  732. bld(
  733. rule=doxygen,
  734. source='doxyfile',
  735. target='doxygen.log'
  736. )
  737. # Determine where to install HTML documentation. Since share_dir is the
  738. # highest directory the uninstall routine should remove, there is no
  739. # better candidate for share_dir, but the requested HTML directory if
  740. # --htmldir is given.
  741. if bld.env['HTMLDIR']:
  742. html_install_dir = bld.options.destdir + bld.env['HTMLDIR']
  743. share_dir = html_install_dir
  744. else:
  745. share_dir = bld.options.destdir + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
  746. html_install_dir = share_dir + '/reference/html/'
  747. if bld.cmd == 'install':
  748. if os.path.isdir(html_install_dir):
  749. Logs.pprint('CYAN', 'Removing old doxygen documentation installation...')
  750. shutil.rmtree(html_install_dir)
  751. Logs.pprint('CYAN', 'Removing old doxygen documentation installation done.')
  752. Logs.pprint('CYAN', 'Installing doxygen documentation...')
  753. shutil.copytree(html_build_dir, html_install_dir)
  754. Logs.pprint('CYAN', 'Installing doxygen documentation done.')
  755. elif bld.cmd == 'uninstall':
  756. Logs.pprint('CYAN', 'Uninstalling doxygen documentation...')
  757. if os.path.isdir(share_dir):
  758. shutil.rmtree(share_dir)
  759. Logs.pprint('CYAN', 'Uninstalling doxygen documentation done.')
  760. elif bld.cmd == 'clean':
  761. if os.access(html_build_dir, os.R_OK):
  762. Logs.pprint('CYAN', 'Removing doxygen generated documentation...')
  763. shutil.rmtree(html_build_dir)
  764. Logs.pprint('CYAN', 'Removing doxygen generated documentation done.')
  765. @TaskGen.extension('.mm')
  766. def mm_hook(self, node):
  767. """Alias .mm files to be compiled the same as .cpp files, gcc will do the right thing."""
  768. return self.create_compiled_task('cxx', node)