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.

919 lines
31KB

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