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.

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