| @@ -200,6 +200,7 @@ def detect_platform(conf): | |||||
| conf.end_msg(name, color='CYAN') | conf.end_msg(name, color='CYAN') | ||||
| break | break | ||||
| def configure(conf): | def configure(conf): | ||||
| conf.load('compiler_cxx') | conf.load('compiler_cxx') | ||||
| conf.load('compiler_c') | conf.load('compiler_c') | ||||
| @@ -248,6 +249,8 @@ def configure(conf): | |||||
| conf.recurse('dbus') | conf.recurse('dbus') | ||||
| if conf.env['BUILD_JACKDBUS'] != True: | if conf.env['BUILD_JACKDBUS'] != True: | ||||
| conf.fatal('jackdbus was explicitly requested but cannot be built') | conf.fatal('jackdbus was explicitly requested but cannot be built') | ||||
| if conf.env['IS_LINUX']: | |||||
| conf.recurse('systemd') | |||||
| conf.recurse('example-clients') | conf.recurse('example-clients') | ||||
| @@ -752,6 +755,7 @@ def build(bld): | |||||
| bld.recurse('example-clients') | bld.recurse('example-clients') | ||||
| if bld.env['IS_LINUX']: | if bld.env['IS_LINUX']: | ||||
| bld.recurse('man') | bld.recurse('man') | ||||
| bld.recurse('systemd') | |||||
| if not bld.env['IS_WINDOWS']: | if not bld.env['IS_WINDOWS']: | ||||
| bld.recurse('tests') | bld.recurse('tests') | ||||
| if bld.env['BUILD_JACKDBUS']: | if bld.env['BUILD_JACKDBUS']: | ||||