add lua-session commandline tool
[ardour.git] / wscript
1 #!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3 from waflib import Options
4 import os
5 import re
6 import string
7 import subprocess
8 import sys
9 import platform as PLATFORM
10 from waflib.Tools import winres
11 from waflib.Build import Context
12 from waflib.Build import BuildContext
13
14 class i18n(BuildContext):
15         cmd = 'i18n'
16         fun = 'i18n'
17
18 class i18n_pot(BuildContext):
19         cmd = 'i18n_pot'
20         fun = 'i18n_pot'
21
22 class i18n_po(BuildContext):
23         cmd = 'i18n_po'
24         fun = 'i18n_po'
25
26 class i18n_mo(BuildContext):
27         cmd = 'i18n_mo'
28         fun = 'i18n_mo'
29
30 def is_tracks_build(self, *k, **kw):
31         return self.env['PROGRAM_NAME'] == 'Tracks Live'
32
33 Context.Context.is_tracks_build = is_tracks_build
34
35 compiler_flags_dictionaries= {
36     'gcc' : {
37         # Flags required when building a debug build
38         'debuggable' : [ '-g' ],
39         # Flags required for the linker (if any) when building a debug build
40         'linker-debuggable' : '',
41         # Flags required when building a non-debug optimized build
42         'nondebuggable' : '-DNDEBUG',
43         # Flags required to enable profiling at runtime with optimized builds
44         'profile' : [ '-fno-omit-frame-pointer' ],
45         # Flags required to enable gprofile profiling
46         'gprofile' : '-pg',
47         # Flags required to disable warnings about unused arguments to function calls
48         'silence-unused-arguments' : '',
49         # Flags required to use SSE unit for general math
50         'sse' : '-msse',
51         # Flags required to use SSE unit for floating point math
52         'fpmath-sse' : '-mfpmath=sse',
53         # Flags required to use XMM Intrinsics
54         'xmmintrinsics' : '-DUSE_XMMINTRIN',
55         # Flags to use posix pipes between compiler stages
56         'pipe' : '-pipe',
57         # Flags for maximally optimized build
58         'full-optimization' : [ '-O3', '-fomit-frame-pointer', '-ffast-math', '-fstrength-reduce', ],
59         # Flag to ensure that compiler error output includes column/line numbers
60         'show-column' : '-fshow-column',
61         # Flags required to build for x86 only (OS X feature)
62         'generic-x86' : '',
63         # Flags required to build for PowerPC only (OS X feature)
64         'generic-ppc' : '',
65         # All flags required to get basic warnings to be generated by the compiler
66         'basic-warnings' : [ '-Wall', '-Wpointer-arith', '-Wcast-qual', '-Wcast-align', '-Wno-unused-parameter' ],
67         # Any additional flags for warnings that are specific to C (not C++)
68         'extra-c-warnings' : [ '-Wstrict-prototypes', '-Wmissing-prototypes' ],
69         # Any additional flags for warnings that are specific to C++ (not C)
70         'extra-cxx-warnings' : [ '-Woverloaded-virtual', '-Wno-unused-local-typedefs' ],
71         # Flags used for "strict" compilation, C and C++ (i.e. compiler will warn about language issues)
72         'strict' : ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings', '-Wunsafe-loop-optimizations', '-Wlogical-op' ],
73         # Flags used for "strict" compilation, C only (i.e. compiler will warn about language issues)
74         'c-strict' : ['-std=c99', '-pedantic', '-Wshadow'],
75         # Flags used for "strict" compilation, C++ only (i.e. compiler will warn about language issues)
76         'cxx-strict' : [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ],
77         # Flags required for whatever consider the strictest possible compilation
78         'ultra-strict' : ['-Wredundant-decls', '-Wstrict-prototypes', '-Wmissing-prototypes'],
79         # Flag to turn on C99 compliance by itself
80         'c99': '-std=c99',
81         # Flag to enable AT&T assembler syntax
82         'attasm': '-masm=att',
83         # Flags to make AVX instructions/intrinsics available
84         'avx': '-mavx',
85         # Flags to generate position independent code, when needed to build a shared object
86         'pic': '-fPIC',
87         # Flags required to compile C code with anonymous unions (only part of C11)
88         'c-anonymous-union': '-fms-extensions',
89     },
90     'msvc' : {
91         'debuggable' : ['/DDEBUG', '/Od', '/Zi', '/MDd', '/Gd', '/EHsc'],
92         'linker-debuggable' : ['/DEBUG', '/INCREMENTAL' ],
93         'nondebuggable' : ['/DNDEBUG', '/Ob1', '/MD', '/Gd', '/EHsc'],
94         'profile' : '/Oy-',
95         'sse' : '/arch:SSE',
96         'silence-unused-arguments' : '',
97         'sse' : '',
98         'fpmath-sse' : '',
99         'xmmintrinsics' : '',
100         'pipe' : '',
101         'full-optimization' : '/O2',
102         'no-frame-pointer' : '',
103         'fast-math' : '',
104         'strength-reduce' : '',
105         'show-column' : '',
106         'generic-x86' : '',
107         'generic-ppc' : '',
108         'basic-warnings' : '',
109         'extra-c-warnings' : '',
110         'extra-cxx-warnings' : '',
111         'ultra-strict' : '',
112         'c-strict' : '',
113         'cxx-strict' : '',
114         'strict' : '',
115         'c99': '/TP',
116         'attasm': '',
117         'avx': '',
118         'pic': '',
119         'c-anonymous-union': '',
120     },
121 }
122
123 # Copy, edit and insert variants on gcc dict for gcc-darwin and clang
124
125 gcc_darwin_dict = compiler_flags_dictionaries['gcc'].copy()
126 gcc_darwin_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual' ]
127 gcc_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual' ]
128 gcc_darwin_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ]
129 gcc_darwin_dict['generic-x86'] = [ '-arch', 'i386' ]
130 gcc_darwin_dict['generic-ppc'] = [ '-arch', 'ppc' ]
131 compiler_flags_dictionaries['gcc-darwin'] = gcc_darwin_dict;
132
133 clang_dict = compiler_flags_dictionaries['gcc'].copy();
134 clang_dict['sse'] = ''
135 clang_dict['fpmath-sse'] = ''
136 clang_dict['xmmintrinsics'] = ''
137 clang_dict['silence-unused-arguments'] = '-Qunused-arguments'
138 clang_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual', '-Wno-mismatched-tags' ]
139 clang_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ]
140 clang_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ]
141 clang_dict['generic-x86'] = [ '-arch', 'i386' ]
142 compiler_flags_dictionaries['clang'] = clang_dict;
143
144 clang_darwin_dict = compiler_flags_dictionaries['clang'].copy();
145 clang_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', ]
146 clang_darwin_dict['full-optimization'] = [ '-O3', '-ffast-math', '-fstrength-reduce' ]
147 compiler_flags_dictionaries['clang-darwin'] = clang_darwin_dict;
148
149 def fetch_git_revision ():
150     cmd = "git describe HEAD | sed 's/^[A-Za-z]*+//'"
151     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
152     rev = output[0].decode ('utf-8')
153     return rev
154
155 def fetch_tarball_revision ():
156     if not os.path.exists ('libs/ardour/revision.cc'):
157         print ('This tarball was not created correctly - it is missing libs/ardour/revision.cc')
158         sys.exit (1)
159     with open('libs/ardour/revision.cc') as f:
160         content = f.readlines()
161         remove_punctuation_map = dict((ord(char), None) for char in '";')
162         return content[1].decode('utf-8').strip().split(' ')[7].translate (remove_punctuation_map)
163
164 if os.path.isdir (os.path.join(os.getcwd(), '.git')):
165     rev = fetch_git_revision ()
166 else:
167     rev = fetch_tarball_revision ()
168
169 #
170 # rev is now of the form MAJOR.MINOR[-rcX]-rev-commit
171 # or, if right at the same rev as a release, MAJOR.MINOR[-rcX]
172 #
173
174 parts = rev.split ('.', 1)
175 MAJOR = parts[0]
176 other = parts[1].split('-', 1)
177 MINOR = other[0]
178 if len(other) > 1:
179     MICRO = other[1].rsplit('-',1)[0].replace('-','.')
180 else:
181     MICRO = '0'
182
183 V = MAJOR + '.' + MINOR + '.' + MICRO
184 # Ensure that these are not unicode, which
185 # can cause odd problems elsewhere. Note that
186 # in python3, encode and decode do not return
187 # strings, so we have to force the type.
188 VERSION = V.encode ('ascii', 'ignore').decode ("utf-8")
189 PROGRAM_VERSION = MAJOR.encode ('ascii', 'ignore').decode ("utf-8")
190
191 if len (sys.argv) > 1 and sys.argv[1] == 'dist':
192         if not 'APPNAME' in os.environ:
193                 print ("You must define APPNAME in the environment when running ./waf dist")
194                 sys.exit (1)
195         APPNAME = os.environ['APPNAME'];
196
197 # Mandatory variables
198 top = '.'
199 out = 'build'
200
201 children = [
202         # optionally external libraries
203         'libs/qm-dsp',
204         'libs/vamp-plugins',
205         'libs/libltc',
206         'libs/lua',
207         'libs/ptformat',
208         # core ardour libraries
209         'libs/pbd',
210         'libs/midi++2',
211         'libs/evoral',
212         'libs/surfaces',
213         'libs/panners',
214         'libs/backends',
215         'libs/timecode',
216         'libs/ardour',
217         'libs/gtkmm2ext',
218         'libs/audiographer',
219         'libs/canvas',
220         'libs/plugins/reasonablesynth.lv2',
221         'gtk2_ardour',
222         'export',
223         'midi_maps',
224         'mcp',
225         'patchfiles',
226         'headless',
227         'session_utils',
228         # shared helper binaries (plugin-scanner, exec-wrapper)
229         'libs/fst',
230         'libs/vfork',
231         'libs/ardouralsautil',
232         'cfgtool',
233         'tools/luadevel',
234 ]
235
236 i18n_children = [
237         'gtk2_ardour',
238         'libs/ardour',
239         'libs/gtkmm2ext',
240 ]
241
242 # Version stuff
243
244 def fetch_gcc_version (CC):
245     cmd = "%s --version" % CC
246     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
247     o = output[0].decode('utf-8')
248     version = o.split(' ')[2].split('.')
249     return version
250
251 def create_stored_revision():
252     rev = ""
253     if os.path.exists('.git'):
254         rev = fetch_git_revision();
255         print("Git version: " + rev + "\n")
256     elif os.path.exists('libs/ardour/revision.cc'):
257         print("Using packaged revision")
258         return
259     else:
260         print("Missing libs/ardour/revision.cc.  Blame the packager.")
261         sys.exit(-1)
262
263     try:
264         #
265         # if you change the format of this, be sure to fix fetch_tarball_revision() above
266         # so that  it still works.
267         #
268         text =  '#include "ardour/revision.h"\n'
269         text += 'namespace ARDOUR { const char* revision = \"%s\"; }\n' % rev
270         print('Writing revision info to libs/ardour/revision.cc using ' + rev)
271         o = open('libs/ardour/revision.cc', 'w')
272         o.write(text)
273         o.close()
274     except IOError:
275         print('Could not open libs/ardour/revision.cc for writing\n')
276         sys.exit(-1)
277
278 def set_compiler_flags (conf,opt):
279     #
280     # Compiler flags and other system-dependent stuff
281     #
282     build_host_supports_sse = False
283
284     # Flags necessary for building
285     compiler_flags = []     # generic
286     c_flags = []            # C-specific
287     cxx_flags = []          # C++-specific
288     linker_flags = []
289
290     # Optimization flags (overridable)
291     optimization_flags = []
292
293     # Debugging flags
294     debug_flags = []
295
296     u = PLATFORM.uname ()
297     cpu = u[4]
298     platform = u[0].lower()
299     version = u[2]
300
301     # waf adds -O0 -g itself. thanks waf!
302     is_clang = conf.check_cxx(fragment = '''
303 #ifndef __clang__
304 #error
305 #endif
306 int main() { return 0; }''',
307                          features  = 'cxx',
308                          mandatory = False,
309                          execute   = False,
310                          msg       = 'Checking for clang')
311
312     if is_clang:
313         if platform == 'darwin':
314             compiler_name = 'clang-darwin'
315         else:
316             compiler_name = 'clang'
317     elif conf.env['MSVC_COMPILER']:
318             compiler_name = 'msvc'
319     else:
320         if platform == 'darwin':
321             compiler_name = 'gcc-darwin'
322         else:
323             compiler_name = 'gcc'
324
325     flags_dict = compiler_flags_dictionaries[compiler_name]
326     # Save the compiler flags because we need them at build time
327     # when we need to add compiler specific flags in certain
328     # libraries
329     conf.env['compiler_flags_dict'] = flags_dict;
330
331     autowaf.set_basic_compiler_flags (conf,flags_dict)
332
333     if conf.options.asan:
334         conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"])
335         cxx_flags.append('-fsanitize=address')
336         cxx_flags.append('-fno-omit-frame-pointer')
337         linker_flags.append('-fsanitize=address')
338
339     if opt.gprofile:
340         debug_flags = [ flags_dict['gprofile'] ]
341
342     # OSX
343     if platform == 'darwin':
344         if re.search ("^13[.]", version) != None:
345             conf.env['build_host'] = 'mavericks'
346         elif re.search ("^14[.]", version) != None:
347             conf.env['build_host'] = 'yosemite'
348         elif re.search ("^15[.]", version) != None:
349             conf.env['build_host'] = 'el_capitan'
350         else:
351             conf.env['build_host'] = 'irrelevant'
352
353     # Autodetect
354     if opt.dist_target == 'auto':
355         if platform == 'darwin':
356             # The [.] matches to the dot after the major version, "." would match any character
357             if re.search ("^[0-7][.]", version) != None:
358                 conf.env['build_target'] = 'panther'
359             elif re.search ("^8[.]", version) != None:
360                 conf.env['build_target'] = 'tiger'
361             elif re.search ("^9[.]", version) != None:
362                 conf.env['build_target'] = 'leopard'
363             elif re.search ("^10[.]", version) != None:
364                 conf.env['build_target'] = 'snowleopard'
365             elif re.search ("^11[.]", version) != None:
366                 conf.env['build_target'] = 'lion'
367             elif re.search ("^12[.]", version) != None:
368                 conf.env['build_target'] = 'mountainlion'
369             elif re.search ("^13[.]", version) != None:
370                 conf.env['build_target'] = 'mavericks'
371             elif re.search ("^14[.]", version) != None:
372                 conf.env['build_target'] = 'yosemite'
373             else:
374                 conf.env['build_target'] = 'el_capitan'
375         else:
376             match = re.search(
377                     "(?P<cpu>i[0-6]86|x86_64|powerpc|ppc|ppc64|arm|s390x?)",
378                     cpu)
379             if (match):
380                 conf.env['build_target'] = match.group("cpu")
381                 if re.search("i[0-5]86", conf.env['build_target']):
382                     conf.env['build_target'] = "i386"
383             else:
384                 conf.env['build_target'] = 'none'
385     else:
386         conf.env['build_target'] = opt.dist_target
387
388     if conf.env['build_target'] == 'snowleopard':
389         #
390         # stupid OS X 10.6 has a bug in math.h that prevents llrint and friends
391         # from being visible.
392         #
393         compiler_flags.append ('-U__STRICT_ANSI__')
394
395     if opt.use_libcpp:
396        cxx_flags.append('--stdlib=libc++')
397        linker_flags.append('--stdlib=libc++')
398
399     if conf.options.cxx11 or conf.env['build_host'] in [ 'mavericks', 'yosemite', 'el_capitan' ]:
400         conf.check_cxx(cxxflags=["-std=c++11"])
401         cxx_flags.append('-std=c++11')
402         if platform == "darwin":
403             # Mavericks and later changed the syntax to be used when including Carbon headers,
404             # from requiring a full path to requiring just the header name.
405             cxx_flags.append('-DCARBON_FLAT_HEADERS')
406
407             if not opt.use_libcpp:
408                 cxx_flags.append('--stdlib=libstdc++')
409                 linker_flags.append('--stdlib=libstdc++')
410             # Prevents visibility issues in standard headers
411             conf.define("_DARWIN_C_SOURCE", 1)
412         else:
413             cxx_flags.append('-DBOOST_NO_AUTO_PTR')
414
415
416     if (is_clang and platform == "darwin") or conf.env['build_host'] in ['mavericks', 'yosemite', 'el_capitan']:
417         # Silence warnings about the non-existing osx clang compiler flags
418         # -compatibility_version and -current_version.  These are Waf
419         # generated and not needed with clang
420         c_flags.append("-Qunused-arguments")
421         cxx_flags.append("-Qunused-arguments")
422
423     if (re.search ("(i[0-9]86|x86_64|AMD64)", cpu) != None) and conf.env['build_target'] != 'none':
424
425         #
426         # ARCH_X86 means anything in the x86 family from i386 to x86_64
427         # the compile-time presence of the macro _LP64 is used to
428         # distingush 32 and 64 bit assembler
429         #
430
431         compiler_flags.append ("-DARCH_X86")
432
433         if platform == 'linux' :
434
435             #
436             # determine processor flags via /proc/cpuinfo
437             #
438
439             if conf.env['build_target'] != 'i386':
440
441                 flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
442                 x86_flags = flag_line.split (": ")[1:][0].split ()
443
444                 if "mmx" in x86_flags:
445                     compiler_flags.append ("-mmmx")
446                 if "sse" in x86_flags:
447                     build_host_supports_sse = True
448                 if "3dnow" in x86_flags:
449                     compiler_flags.append ("-m3dnow")
450
451             if cpu == "i586":
452                 compiler_flags.append ("-march=i586")
453             elif cpu == "i686":
454                 compiler_flags.append ("-march=i686")
455
456         if not is_clang and ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse:
457             compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'] ])
458
459         if (conf.env['build_target'] == 'mingw'):
460             if (re.search ("(x86_64|AMD64)", cpu) != None):
461                 # on Windows sse is supported by 64 bit platforms only
462                 build_host_supports_sse = True
463
464                 # mingw GCC compiler to uses at&t (Unix specific) assembler dialect by default
465                 # compiler_flags.append (["--mmnemonic=att", "msyntax=att")
466
467                 compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'], flags_dict['attasm'] ])
468
469     # end of processor-specific section
470
471     # optimization section
472     if conf.env['FPU_OPTIMIZATION']:
473         if sys.platform == 'darwin':
474             compiler_flags.append("-DBUILD_VECLIB_OPTIMIZATIONS");
475             conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'Accelerate'])
476         elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64':
477                 compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
478         elif conf.env['build_target'] == 'mingw':
479                 # usability of the 64 bit windows assembler depends on the compiler target,
480                 # not the build host, which in turn can only be inferred from the name
481                 # of the compiler.
482                 if re.search ('x86_64-w64', str(conf.env['CC'])) != None:
483                         compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
484         if not build_host_supports_sse:
485             print("\nWarning: you are building Ardour with SSE support even though your system does not support these instructions. (This may not be an error, especially if you are a package maintainer)")
486
487     # end optimization section
488
489     #
490     # no VST on x86_64
491     #
492
493     if conf.env['build_target'] == 'x86_64' and opt.windows_vst:
494         print("\n\n==================================================")
495         print("64bit Windows VST support on 64bit Linux is experimental.")
496         print("(This version of ardour will not load 32bit VSTs)")
497         print("==================================================\n\n")
498
499     if conf.env['LXVST_SUPPORT'] == True:
500         if conf.env['build_target'] == 'x86_64':
501             compiler_flags.append("-DLXVST_64BIT")
502         else:
503             compiler_flags.append("-DLXVST_32BIT")
504
505     #
506     # a single way to test if we're on OS X
507     #
508
509     if conf.env['build_target'] in ['panther', 'tiger', 'leopard' ]:
510         # force tiger or later, to avoid issues on PPC which defaults
511         # back to 10.1 if we don't tell it otherwise.
512
513         compiler_flags.extend(
514                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1040",
515                  '-mmacosx-version-min=10.4'))
516
517     elif conf.env['build_target'] in [ 'snowleopard' ]:
518         compiler_flags.extend(
519                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1060",
520                  '-mmacosx-version-min=10.6'))
521
522     elif conf.env['build_target'] in [ 'lion', 'mountainlion' ]:
523         compiler_flags.extend(
524                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1070",
525                  '-mmacosx-version-min=10.7'))
526
527     elif conf.env['build_target'] in [ 'mavericks', 'yosemite', 'el_capitan' ]:
528         compiler_flags.extend(
529                 ("-DMAC_OS_X_VERSION_MAX_ALLOWED=1090",
530                  "-mmacosx-version-min=10.8"))
531
532     #
533     # save off CPU element in an env
534     #
535     conf.define ('CONFIG_ARCH', cpu)
536
537     #
538     # ARCH="..." overrides all
539     #
540
541     if opt.arch != None:
542         optimization_flags = opt.arch.split()
543
544     #
545     # prepend boiler plate optimization flags that work on all architectures
546     #
547
548     optimization_flags[:0] = [flags_dict['pipe']]
549
550     # don't prepend optimization flags if "-O<something>" is present
551     prepend_opt_flags = True
552     for flag in optimization_flags:
553         if flag.startswith("-O"):
554             prepend_opt_flags = False
555             break
556
557     if prepend_opt_flags:
558         optimization_flags[:0] = flags_dict['full-optimization']
559
560     if opt.debug_symbols:
561         optimization_flags += flags_dict['debuggable']
562
563     if opt.profile:
564         optimization_flags += flags_dict['profile']
565
566     if opt.stl_debug:
567         cxx_flags.append("-D_GLIBCXX_DEBUG")
568
569     if conf.env['DEBUG_RT_ALLOC']:
570         compiler_flags.append('-DDEBUG_RT_ALLOC')
571         linker_flags.append('-ldl')
572
573     if conf.env['DEBUG_DENORMAL_EXCEPTION']:
574         compiler_flags.append('-DDEBUG_DENORMAL_EXCEPTION')
575
576     if opt.generic:
577         compiler_flags.extend(flags_dict['generic-x86'])
578         linker_flags.extend(flags_dict['generic-x86'])
579
580     if opt.ppc:
581         compiler_flags.extend(flags_dict['generic-ppc'])
582         linker_flags.extend(flags_dict['generic-ppc'])
583
584     #
585     # warnings flags
586     #
587
588     compiler_flags.extend(flags_dict['basic-warnings'])
589
590     c_flags.extend(flags_dict['extra-c-warnings'])
591     cxx_flags.extend (flags_dict['extra-cxx-warnings'])
592
593     #
594     # more boilerplate
595     #
596
597     # need ISOC9X for llabs()
598     compiler_flags.extend(
599         ('-DBOOST_SYSTEM_NO_DEPRECATED', '-D_ISOC9X_SOURCE',
600          '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64'))
601     cxx_flags.extend(
602         ('-D__STDC_LIMIT_MACROS', '-D__STDC_FORMAT_MACROS',
603          '-DCANVAS_COMPATIBILITY', '-DCANVAS_DEBUG'))
604
605     if opt.nls:
606         compiler_flags.append('-DENABLE_NLS')
607
608     # use sparingly, prefer runtime profile
609     if Options.options.program_name.lower() == "mixbus":
610         compiler_flags.append ('-DMIXBUS')
611
612     compiler_flags.append ('-DPROGRAM_NAME="' + Options.options.program_name + '"')
613     compiler_flags.append ('-DPROGRAM_VERSION="' + PROGRAM_VERSION + '"')
614
615     conf.env['PROGRAM_NAME'] = Options.options.program_name
616
617     if opt.debug:
618         conf.env.append_value('CFLAGS', debug_flags)
619         conf.env.append_value('CXXFLAGS', debug_flags)
620     else:
621         conf.env.append_value('CFLAGS', optimization_flags)
622         conf.env.append_value('CXXFLAGS', optimization_flags)
623
624     if opt.backtrace:
625         if platform != 'darwin' and not is_clang and not Options.options.dist_target == 'mingw':
626             linker_flags += [ '-rdynamic' ]
627
628     conf.env.append_value('CFLAGS', compiler_flags)
629     conf.env.append_value('CFLAGS', c_flags)
630     conf.env.append_value('CXXFLAGS', compiler_flags)
631     conf.env.append_value('CXXFLAGS', cxx_flags)
632     conf.env.append_value('LINKFLAGS', linker_flags)
633
634 def is_tracks_build (conf):
635         return conf.env['PROGRAM_NAME'] == 'Tracks Live'
636
637 #----------------------------------------------------------------
638
639 # Waf stages
640
641 def options(opt):
642     opt.load('compiler_c')
643     opt.load('compiler_cxx')
644     autowaf.set_options(opt, debug_by_default=True)
645     opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
646                     help='The user-visible name of the program being built')
647     opt.add_option('--arch', type='string', action='store', dest='arch',
648                     help='Architecture-specific compiler FLAGS')
649     opt.add_option('--with-backends', type='string', action='store', default='jack', dest='with_backends',
650                     help='Specify which backend modules are to be included(jack,alsa,dummy,portaudio,coreaudio)')
651     opt.add_option('--backtrace', action='store_true', default=False, dest='backtrace',
652                     help='Compile with -rdynamic -- allow obtaining backtraces from within Ardour')
653     opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
654                     help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
655     opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
656                     help='Compile with Boost shared pointer debugging')
657     opt.add_option('--debug-symbols', action='store_true', default=False, dest='debug_symbols',
658                     help='Add debug-symbols to optimized builds')
659     opt.add_option('--depstack-root', type='string', default='~', dest='depstack_root',
660                     help='Directory/folder where dependency stack trees (gtk, a3) can be found (defaults to ~)')
661     opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
662                     help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,tiger,leopard,mingw,msvc]')
663     opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
664                     help='Build runtime checked assembler code (default)')
665     opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization')
666     opt.add_option('--exports-hidden', action='store_true', default=False, dest='exports_hidden')
667     opt.add_option('--freedesktop', action='store_true', default=False, dest='freedesktop',
668                     help='Build MIME type and .desktop files as per freedesktop.org standards (will be placed in build/gtk2_ardour)')
669     opt.add_option('--freebie', action='store_true', default=False, dest='freebie',
670                     help='Build a version suitable for distribution as a zero-cost binary')
671     opt.add_option('--profile', action='store_true', default=False, dest='profile',
672                     help='Compile for use with profiling tools requiring a frame pointer')
673     opt.add_option('--gprofile', action='store_true', default=False, dest='gprofile',
674                     help='Compile for use with gprofile')
675     opt.add_option('--libjack', type='string', default="auto", dest='libjack_link',
676                     help='libjack link mode  [auto|link|weak]')
677     opt.add_option('--internal-shared-libs', action='store_true', default=True, dest='internal_shared_libs',
678                    help='Build internal libs as shared libraries')
679     opt.add_option('--internal-static-libs', action='store_false', dest='internal_shared_libs',
680                    help='Build internal libs as static libraries')
681     opt.add_option('--use-external-libs', action='store_true', default=False, dest='use_external_libs',
682                    help='Use external/system versions of some bundled libraries')
683     opt.add_option('--lv2', action='store_true', default=True, dest='lv2',
684                     help='Compile with support for LV2 (if Lilv+Suil is available)')
685     opt.add_option('--no-lv2', action='store_false', dest='lv2',
686                     help='Do not compile with support for LV2')
687     opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]")
688     opt.add_option('--lxvst', action='store_true', default=True, dest='lxvst',
689                     help='Compile with support for linuxVST plugins')
690     opt.add_option('--no-lxvst', action='store_false', dest='lxvst',
691                     help='Compile without support for linuxVST plugins')
692     opt.add_option('--no-lrdf', action='store_true', dest='no_lrdf',
693                     help='Compile without support for LRDF LADSPA data even if present')
694     opt.add_option('--nls', action='store_true', default=True, dest='nls',
695                     help='Enable i18n (native language support) (default)')
696     opt.add_option('--no-nls', action='store_false', dest='nls')
697     opt.add_option('--phone-home', action='store_true', default=True, dest='phone_home',
698                    help='Contact ardour.org at startup for new announcements')
699     opt.add_option('--no-phone-home', action='store_false', dest='phone_home',
700                    help='Do not contact ardour.org at startup for new announcements')
701     opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
702                     help='Build with debugging for the STL')
703     opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
704                     help='Build with debugging for memory allocation in the real-time thread')
705     opt.add_option('--pt-timing', action='store_true', default=False, dest='pt_timing',
706                     help='Build with logging of timing in the process thread(s)')
707     opt.add_option('--denormal-exception', action='store_true', default=False, dest='denormal_exception',
708                     help='Raise a floating point exception if a denormal is detected')
709     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
710                     help="Build unit tests")
711     opt.add_option('--run-tests', action='store_true', default=False, dest='run_tests',
712                     help="Run tests after build")
713     opt.add_option('--single-tests', action='store_true', default=False, dest='single_tests',
714                     help="Build a single executable for each unit test")
715     #opt.add_option('--tranzport', action='store_true', default=False, dest='tranzport',
716     # help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
717     opt.add_option('--generic', action='store_true', default=False, dest='generic',
718                     help='Compile with -arch i386 (OS X ONLY)')
719     opt.add_option('--ppc', action='store_true', default=False, dest='ppc',
720                     help='Compile with -arch ppc (OS X ONLY)')
721     opt.add_option('--versioned', action='store_true', default=False, dest='versioned',
722                     help='Add revision information to executable name inside the build directory')
723     opt.add_option('--windows-vst', action='store_true', default=False, dest='windows_vst',
724                     help='Compile with support for Windows VST')
725     opt.add_option('--windows-key', type='string', action='store', dest='windows_key', default='Mod4><Super',
726                     help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
727                     'Multiple modifiers must be separated by \'><\'')
728     opt.add_option('--boost-include', type='string', action='store', dest='boost_include', default='',
729                     help='directory where Boost header files can be found')
730     opt.add_option('--also-include', type='string', action='store', dest='also_include', default='',
731                     help='additional include directory where header files can be found (split multiples with commas)')
732     opt.add_option('--also-libdir', type='string', action='store', dest='also_libdir', default='',
733                     help='additional include directory where shared libraries can be found (split multiples with commas)')
734     opt.add_option('--wine-include', type='string', action='store', dest='wine_include', default='/usr/include/wine/windows',
735                     help='directory where Wine\'s Windows header files can be found')
736     opt.add_option('--noconfirm', action='store_true', default=False, dest='noconfirm',
737                     help='Do not ask questions that require confirmation during the build')
738     opt.add_option('--cxx11', action='store_true', default=False, dest='cxx11',
739                     help='Turn on c++11 compiler flags (-std=c++11)')
740     opt.add_option('--use-libc++', action='store_true', default=False, dest='use_libcpp',
741                     help='use libc++ instead of default or auto-detected stdlib')
742     opt.add_option('--address-sanitizer', action='store_true', default=False, dest='asan',
743                     help='Turn on AddressSanitizer (requires GCC >= 4.8 or clang >= 3.1)')
744     opt.add_option('--ptformat', action='store_true', default=False, dest='ptformat',
745                     help='Turn on PT session import option')
746     opt.add_option('--no-threaded-waveviews', action='store_true', default=False, dest='no_threaded_waveviews',
747                     help='Disable threaded waveview rendering')
748
749     for i in children:
750         opt.recurse(i)
751
752 def sub_config_and_use(conf, name, has_objects = True):
753     conf.recurse(name)
754     autowaf.set_local_lib(conf, name, has_objects)
755
756 def configure(conf):
757     conf.load('compiler_c')
758     conf.load('compiler_cxx')
759     if Options.options.dist_target == 'mingw':
760         conf.load('winres')
761
762     if Options.options.dist_target == 'msvc':
763         conf.env['MSVC_VERSIONS'] = ['msvc 10.0', 'msvc 9.0', 'msvc 8.0', 'msvc 7.1', 'msvc 7.0', 'msvc 6.0', ]
764         conf.env['MSVC_TARGETS'] = ['x64']
765         conf.load('msvc')
766
767     if Options.options.debug:
768         # Nuke user CFLAGS/CXXFLAGS if debug is set (they likely contain -O3, NDEBUG, etc)
769         conf.env['CFLAGS'] = []
770         conf.env['CXXFLAGS'] = []
771
772     # freedesktop translations needs itstool > 1.0.3 (-j option)
773     if Options.options.freedesktop:
774         output = subprocess.Popen("itstool --version", shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
775         o = output[0].decode('utf-8')
776         itstool = o.split(' ')[0]
777         version = o.split(' ')[1].split('.')
778         # use  distutils.version.StrictVersion  or something python to check >= 1.0.4
779         # but first make sure that all build-hosts (incl. OSX-10.5/PPC) have that python lib.
780         # lazy approach: just use major version 2.X.X
781         if itstool != "itstool" or version[0] < "2":
782             print("--freedesktop requires itstool > 2.0.0 to translate files.")
783             sys.exit(-1)
784
785     conf.env['VERSION'] = VERSION
786     conf.env['MAJOR'] = MAJOR
787     conf.env['MINOR'] = MINOR
788     conf.env['MICRO'] = MICRO
789     conf.line_just = 52
790     autowaf.set_recursive()
791     autowaf.configure(conf)
792     autowaf.display_header('Ardour Configuration')
793
794     # systems with glibc have libintl builtin. systems without require explicit
795     # linkage against libintl.
796     #
797
798     pkg_config_path = os.getenv('PKG_CONFIG_PATH')
799     user_gtk_root = os.path.expanduser (Options.options.depstack_root + '/gtk/inst')
800
801     if pkg_config_path is not None and pkg_config_path.find (user_gtk_root) >= 0:
802         # told to search user_gtk_root
803         prefinclude = ''.join ([ '-I', user_gtk_root + '/include'])
804         preflib = ''.join ([ '-L', user_gtk_root + '/lib'])
805         conf.env.append_value('CFLAGS', [ prefinclude ])
806         conf.env.append_value('CXXFLAGS',  [prefinclude ])
807         conf.env.append_value('LINKFLAGS', [ preflib ])
808         autowaf.display_msg(conf, 'Will build against private GTK dependency stack in ' + user_gtk_root, 'yes')
809     else:
810         autowaf.display_msg(conf, 'Will build against private GTK dependency stack', 'no')
811
812     if sys.platform == 'darwin':
813         conf.define ('NEED_INTL', 1)
814         autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ' + user_gtk_root, 'yes')
815     else:
816         # libintl is part of the system, so use it
817         autowaf.display_msg(conf, 'Will rely on libintl built into libc', 'yes')
818
819     user_ardour_root = os.path.expanduser (Options.options.depstack_root + '/a3/inst')
820     if pkg_config_path is not None and pkg_config_path.find (user_ardour_root) >= 0:
821         # told to search user_ardour_root
822         prefinclude = ''.join ([ '-I', user_ardour_root + '/include'])
823         preflib = ''.join ([ '-L', user_ardour_root + '/lib'])
824         conf.env.append_value('CFLAGS', [ prefinclude ])
825         conf.env.append_value('CXXFLAGS',  [prefinclude ])
826         conf.env.append_value('LINKFLAGS', [ preflib ])
827         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack in ' + user_ardour_root, 'yes')
828     else:
829         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack', 'no')
830
831     if Options.options.freebie:
832         conf.env.append_value ('CFLAGS', '-DSILENCE_AFTER')
833         conf.env.append_value ('CXXFLAGS', '-DSILENCE_AFTER')
834         conf.define ('FREEBIE', 1)
835
836     if Options.options.lv2dir:
837         conf.env['LV2DIR'] = Options.options.lv2dir
838     else:
839         conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'ardour' + str(conf.env['MAJOR']), 'LV2')
840
841     conf.env['LV2DIR'] = os.path.normpath(conf.env['LV2DIR'])
842
843     if sys.platform == 'darwin':
844
845         # this is required, potentially, for anything we link and then relocate into a bundle
846         conf.env.append_value('LINKFLAGS', [ '-Xlinker', '-headerpad_max_install_names' ])
847
848         conf.define ('HAVE_COREAUDIO', 1)
849         conf.define ('AUDIOUNIT_SUPPORT', 1)
850
851         conf.define ('TOP_MENUBAR',1)
852
853         # It would be nice to be able to use this to force back-compatibility with 10.4
854         # but even by the time of 11, the 10.4 SDK is no longer available in any normal
855         # way.
856         #
857         #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
858         #conf.env.append_value('CFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
859         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
860         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
861
862         conf.env.append_value('CXXFLAGS_OSX', "-msse")
863         conf.env.append_value('CFLAGS_OSX', "-msse")
864         conf.env.append_value('CXXFLAGS_OSX', "-msse2")
865         conf.env.append_value('CFLAGS_OSX', "-msse2")
866         #
867         #       TODO: The previous sse flags NEED to be based
868         #       off processor type.  Need to add in a check
869         #       for that.
870         #
871         conf.env.append_value('CXXFLAGS_OSX', '-F/System/Library/Frameworks')
872         conf.env.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
873
874         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
875         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
876         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudioKit'])
877         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
878         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
879
880         conf.env.append_value('LINKFLAGS_OSX', ['-undefined', 'dynamic_lookup' ])
881         conf.env.append_value('LINKFLAGS_OSX', ['-flat_namespace'])
882
883         conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAUDIOUNIT_SUPPORT")
884         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'AudioToolbox', '-framework', 'AudioUnit'])
885         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Cocoa'])
886
887         if (
888                 # osx up to and including 10.6 (uname 10.X.X)
889                 (re.search ("^[1-9][0-9]\.", os.uname()[2]) == None or not re.search ("^10\.", os.uname()[2]) == None)
890                 and (Options.options.generic or Options.options.ppc)
891                 and not Options.options.nocarbon
892            ):
893             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DWITH_CARBON")
894             conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Carbon'])
895         else:
896             print ('No Carbon support available for this build\n')
897
898
899     if Options.options.internal_shared_libs:
900         conf.define('INTERNAL_SHARED_LIBS', 1)
901
902     if Options.options.use_external_libs:
903         conf.define('USE_EXTERNAL_LIBS', 1)
904
905     if Options.options.boost_include != '':
906         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
907
908     if Options.options.also_include != '':
909         conf.env.append_value('CXXFLAGS', '-I' + Options.options.also_include)
910         conf.env.append_value('CFLAGS', '-I' + Options.options.also_include)
911
912     if Options.options.also_libdir != '':
913         conf.env.append_value('LDFLAGS', '-L' + Options.options.also_libdir)
914
915     if Options.options.boost_sp_debug:
916         conf.env.append_value('CXXFLAGS', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
917
918     # executing a test program is n/a when cross-compiling
919     if Options.options.dist_target != 'mingw':
920         if Options.options.dist_target != 'msvc':
921             conf.check_cc(function_name='dlopen', header_name='dlfcn.h', lib='dl', uselib_store='DL')
922         conf.check_cxx(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
923                   execute = "1",
924                   mandatory = True,
925                   msg = 'Checking for boost library >= 1.39',
926                   okmsg = 'ok',
927                   errmsg = 'too old\nPlease install boost version 1.39 or higher.')
928
929     if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw':
930         autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
931
932     autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
933     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
934     autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
935     autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)
936     autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2', mandatory=True)
937     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True)
938     autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True)
939     autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True)
940     autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.1', mandatory=True)
941     autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.1', mandatory=True)
942     autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', mandatory=True)
943
944     have_rf64_riff_support = conf.check_cc(fragment = '''
945 #include <sndfile.h>
946 int main () { int x = SFC_RF64_AUTO_DOWNGRADE; return 0; }
947 ''',
948                                            features  = 'c',
949                                            mandatory = False,
950                                            execute   = False,
951                                            use = 'SNDFILE',
952                                            msg       = 'Checking for  sndfile RF64=>RIFF support',
953                                            okmsg = 'Found',
954                                            errmsg = 'Not found, no RF64-to-WAV support')
955
956     if have_rf64_riff_support:
957             conf.env.append_value('CXXFLAGS', "-DHAVE_RF64_RIFF")
958             conf.env.append_value('CFLAGS', "-DHAVE_RF64_RIFF")
959
960     if Options.options.dist_target == 'mingw':
961         Options.options.fpu_optimization = True
962         conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS')
963         conf.env.append_value('CFLAGS', '-DCOMPILER_MINGW')
964         conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS')
965         conf.env.append_value('CXXFLAGS', '-DCOMPILER_MINGW')
966         conf.env.append_value('LIB', 'pthread')
967         # needed for at least libsmf
968         conf.check_cc(function_name='htonl', header_name='winsock2.h', lib='ws2_32')
969         conf.env.append_value('LIB', 'ws2_32')
970         conf.env.append_value('LIB', 'winmm')
971         # needed for mingw64 packages, not harmful on normal mingw build
972         conf.env.append_value('LIB', 'intl')
973         conf.check_cc(function_name='regcomp', header_name='regex.h',
974                       lib='regex', uselib_store="REGEX", define_name='HAVE_REGEX_H')
975         # TODO put this only where it is needed
976         conf.env.append_value('LIB', 'regex')
977         # TODO this should only be necessary for a debug build
978         conf.env.append_value('LIB', 'dbghelp')
979
980         # work around GdkDrawable BitBlt performance issue on windows
981         # see http://gareus.org/wiki/ardour_windows_gdk_and_cairo
982         conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
983         conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
984         conf.define ('WINDOWS', 1)
985
986         have_ptw_semaphore = conf.check_cc(fragment = '''
987 #include <pthread.h>
988 #include <semaphore.h>
989 int main () { return 0; }
990 ''',
991                                            features  = 'c',
992                                            mandatory = False,
993                                            execute   = False,
994                                            msg       = 'Checking for pthread posix semaphore',
995                                            okmsg     = 'Found',
996                                            errmsg    = 'Not found, falling back to Windows Semaphore.')
997
998         #if have_ptw_semaphore:
999         #    conf.define('USE_PTW32_SEMAPHORE', 1)
1000         #    conf.env.append_value('CFLAGS', '-DUSE_PTW32_SEMAPHORE')
1001         #    conf.env.append_value('CXXFLAGS', '-DUSE_PTW32_SEMAPHORE')
1002
1003     if Options.options.dist_target == 'msvc':
1004         conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS')
1005         conf.env.append_value('CFLAGS', '-DCOMPILER_MSVC')
1006         conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS')
1007         conf.env.append_value('CXXFLAGS', '-DCOMPILER_MSVC')
1008         # work around GdkDrawable BitBlt performance issue on windows
1009         # see http://gareus.org/wiki/ardour_windows_gdk_and_cairo
1010         conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1011         conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1012         # MORE STUFF PROBABLY NEEDED HERE
1013         conf.define ('WINDOWS', 1)
1014
1015     # Tell everyone that this is a waf build
1016
1017     conf.env.append_value('CFLAGS', '-DWAF_BUILD')
1018     conf.env.append_value('CXXFLAGS', '-DWAF_BUILD')
1019
1020     opts = Options.options
1021
1022     # (optionally) Adopt Microsoft-like convention that makes all non-explicitly exported
1023     # symbols invisible (rather than doing this all over the wscripts in the src tree)
1024     #
1025     # This won't apply to MSVC but that hasn't been added as a target yet
1026     #
1027     # We can't do this till all tests are complete, since some fail if this is et.
1028     if opts.exports_hidden:
1029         conf.define ('EXPORT_VISIBILITY_HIDDEN', True)
1030         if opts.internal_shared_libs:
1031             conf.env.append_value ('CXXFLAGS', '-fvisibility=hidden')
1032             conf.env.append_value ('CFLAGS', '-fvisibility=hidden')
1033     else:
1034         conf.define ('EXPORT_VISIBILITY_HIDDEN', False)
1035
1036     # Set up waf environment and C defines
1037     if opts.phone_home:
1038         conf.define('PHONE_HOME', 1)
1039         conf.env['PHONE_HOME'] = True
1040     if opts.fpu_optimization:
1041         conf.env['FPU_OPTIMIZATION'] = True
1042     if opts.freedesktop:
1043         conf.env['FREEDESKTOP'] = True
1044     if opts.nls:
1045         conf.define('ENABLE_NLS', 1)
1046         conf.env['ENABLE_NLS'] = True
1047     if opts.build_tests:
1048         conf.env['BUILD_TESTS'] = True
1049         conf.env['RUN_TESTS'] = opts.run_tests
1050     if opts.single_tests:
1051         conf.env['SINGLE_TESTS'] = opts.single_tests
1052     #if opts.tranzport:
1053     #    conf.env['TRANZPORT'] = 1
1054     if opts.windows_vst:
1055         conf.define('WINDOWS_VST_SUPPORT', 1)
1056         conf.env['WINDOWS_VST_SUPPORT'] = True
1057         if not Options.options.dist_target == 'mingw':
1058             conf.env.append_value('CFLAGS', '-I' + Options.options.wine_include)
1059             conf.env.append_value('CXXFLAGS', '-I' + Options.options.wine_include)
1060             autowaf.check_header(conf, 'cxx', 'windows.h', mandatory = True)
1061     if opts.lxvst:
1062         if sys.platform == 'darwin':
1063             conf.env['LXVST_SUPPORT'] = False
1064         elif Options.options.dist_target == 'mingw':
1065             conf.env['LXVST_SUPPORT'] = False
1066         else:
1067             conf.define('LXVST_SUPPORT', 1)
1068             conf.env['LXVST_SUPPORT'] = True
1069     conf.env['WINDOWS_KEY'] = opts.windows_key
1070     if opts.rt_alloc_debug:
1071         conf.define('DEBUG_RT_ALLOC', 1)
1072         conf.env['DEBUG_RT_ALLOC'] = True
1073     if opts.pt_timing:
1074         conf.define('PT_TIMING', 1)
1075         conf.env['PT_TIMING'] = True
1076     if opts.denormal_exception:
1077         conf.define('DEBUG_DENORMAL_EXCEPTION', 1)
1078         conf.env['DEBUG_DENORMAL_EXCEPTION'] = True
1079     if opts.build_tests:
1080         autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=True)
1081     if opts.ptformat:
1082         conf.define('PTFORMAT', 1)
1083         conf.env['PTFORMAT'] = True
1084     if opts.no_threaded_waveviews:
1085         conf.define('NO_THREADED_WAVEVIEWS', 1)
1086         conf.env['NO_THREADED_WAVEVIEWS'] = True
1087         
1088     backends = opts.with_backends.split(',')
1089
1090     if not backends:
1091         print("Must configure and build at least one backend")
1092         sys.exit(1)
1093
1094     conf.env['BACKENDS'] = backends
1095     conf.env['BUILD_JACKBACKEND'] = any('jack' in b for b in backends)
1096     conf.env['BUILD_ALSABACKEND'] = any('alsa' in b for b in backends)
1097     conf.env['BUILD_DUMMYBACKEND'] = any('dummy' in b for b in backends)
1098     conf.env['BUILD_PABACKEND'] = any('portaudio' in b for b in backends)
1099     conf.env['BUILD_CORECRAPPITA'] = any('coreaudio' in b for b in backends)
1100
1101     if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw' and conf.env['BUILD_PABACKEND']:
1102         print("PortAudio Backend is not for Linux")
1103         sys.exit(1)
1104
1105     if sys.platform != 'darwin' and conf.env['BUILD_CORECRAPPITA']:
1106         print("Coreaudio backend is only available for OSX")
1107         sys.exit(1)
1108
1109     if re.search ("linux", sys.platform) == None and conf.env['BUILD_ALSABACKEND']:
1110         print("ALSA Backend is only available on Linux")
1111         sys.exit(1)
1112
1113     set_compiler_flags (conf, Options.options)
1114
1115     if sys.platform == 'darwin':
1116         sub_config_and_use(conf, 'libs/appleutility')
1117     elif Options.options.dist_target != 'mingw':
1118         sub_config_and_use(conf, 'tools/sanity_check')
1119         sub_config_and_use(conf, 'tools/gccabicheck')
1120
1121     sub_config_and_use(conf, 'libs/clearlooks-newer')
1122
1123     for i in children:
1124         sub_config_and_use(conf, i)
1125
1126     # Fix utterly braindead FLAC include path to not smash assert.h
1127     conf.env['INCLUDES_FLAC'] = []
1128
1129     config_text = open('libs/ardour/config_text.cc', "w")
1130     config_text.write('''#include "ardour/ardour.h"
1131 namespace ARDOUR {
1132 const char* const ardour_config_info = "\\n\\
1133 ''')
1134
1135     def write_config_text(title, val):
1136         autowaf.display_msg(conf, title, val)
1137         config_text.write(title + ': ')
1138         config_text.write(str(val).replace ('"', '\\"'))
1139         config_text.write("\\n\\\n")
1140
1141     write_config_text('Build documentation',   conf.env['DOCS'])
1142     write_config_text('Debuggable build',      conf.env['DEBUG'])
1143     write_config_text('Export all symbols (backtrace)', opts.backtrace)
1144     write_config_text('Install prefix',        conf.env['PREFIX'])
1145     write_config_text('Strict compiler flags', conf.env['STRICT'])
1146     write_config_text('Internal Shared Libraries', conf.is_defined('INTERNAL_SHARED_LIBS'))
1147     write_config_text('Use External Libraries', conf.is_defined('USE_EXTERNAL_LIBS'))
1148     write_config_text('Library exports hidden', conf.is_defined('EXPORT_VISIBILITY_HIDDEN'))
1149
1150     write_config_text('ALSA DBus Reservation', conf.is_defined('HAVE_DBUS'))
1151     write_config_text('Architecture flags',    opts.arch)
1152     write_config_text('Aubio',                 conf.is_defined('HAVE_AUBIO'))
1153     write_config_text('AudioUnits',            conf.is_defined('AUDIOUNIT_SUPPORT'))
1154     write_config_text('Free/Demo copy',        conf.is_defined('FREEBIE'))
1155     write_config_text('Build target',          conf.env['build_target'])
1156     write_config_text('CoreAudio',             conf.is_defined('HAVE_COREAUDIO'))
1157     write_config_text('CoreAudio 10.5 compat', conf.is_defined('COREAUDIO105'))
1158     write_config_text('Debug RT allocations',  conf.is_defined('DEBUG_RT_ALLOC'))
1159     write_config_text('Debug Symbols',         conf.is_defined('debug_symbols') or conf.env['DEBUG'])
1160     write_config_text('Process thread timing', conf.is_defined('PT_TIMING'))
1161     write_config_text('Denormal exceptions',   conf.is_defined('DEBUG_DENORMAL_EXCEPTION'))
1162     write_config_text('FLAC',                  conf.is_defined('HAVE_FLAC'))
1163     write_config_text('FPU optimization',      opts.fpu_optimization)
1164     write_config_text('Freedesktop files',     opts.freedesktop)
1165     write_config_text('Libjack linking',       conf.env['libjack_link'])
1166     write_config_text('Libjack metadata',      conf.is_defined ('HAVE_JACK_METADATA'))
1167     write_config_text('LV2 UI embedding',      conf.is_defined('HAVE_SUIL'))
1168     write_config_text('LV2 support',           conf.is_defined('LV2_SUPPORT'))
1169     write_config_text('LXVST support',         conf.is_defined('LXVST_SUPPORT'))
1170     write_config_text('OGG',                   conf.is_defined('HAVE_OGG'))
1171     write_config_text('Phone home',            conf.is_defined('PHONE_HOME'))
1172     write_config_text('Program name',          opts.program_name)
1173     write_config_text('Samplerate',            conf.is_defined('HAVE_SAMPLERATE'))
1174     write_config_text('PT format',             conf.is_defined('PTFORMAT'))
1175     write_config_text('PTW32 Semaphore',       conf.is_defined('USE_PTW32_SEMAPHORE'))
1176 #    write_config_text('Soundtouch',            conf.is_defined('HAVE_SOUNDTOUCH'))
1177     write_config_text('Translation',           opts.nls)
1178 #    write_config_text('Tranzport',             opts.tranzport)
1179     write_config_text('Unit tests',            conf.env['BUILD_TESTS'])
1180     write_config_text('Mac i386 Architecture', opts.generic)
1181     write_config_text('Mac ppc Architecture',  opts.ppc)
1182     write_config_text('Windows VST support',   opts.windows_vst)
1183     write_config_text('Wiimote support',       conf.is_defined('BUILD_WIIMOTE'))
1184     write_config_text('Windows key',           opts.windows_key)
1185
1186     print ('\nBackends:')
1187     
1188     write_config_text('PortAudio Backend',     conf.env['BUILD_PABACKEND'])
1189     write_config_text('CoreAudio/Midi Backend',conf.env['BUILD_CORECRAPPITA'])
1190     write_config_text('ALSA Backend',          conf.env['BUILD_ALSABACKEND'])
1191     write_config_text('Dummy backend',         conf.env['BUILD_DUMMYBACKEND'])
1192     write_config_text('JACK Backend',          conf.env['BUILD_JACKBACKEND'])
1193
1194     print ('\n')
1195     
1196     write_config_text('C compiler flags',      conf.env['CFLAGS'])
1197     write_config_text('C++ compiler flags',    conf.env['CXXFLAGS'])
1198     write_config_text('Linker flags',          conf.env['LINKFLAGS'])
1199
1200     config_text.write ('";\n}\n')
1201     config_text.close ()
1202     print('')
1203
1204 def build(bld):
1205     create_stored_revision()
1206
1207     # add directories that contain only headers, to workaround an issue with waf
1208
1209     if not bld.is_defined('USE_EXTERNAL_LIBS'):
1210         bld.path.find_dir ('libs/libltc/ltc')
1211     bld.path.find_dir ('libs/evoral/evoral')
1212     bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
1213     bld.path.find_dir ('libs/timecode/timecode')
1214     bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
1215     bld.path.find_dir ('libs/ardour/ardour')
1216     bld.path.find_dir ('libs/pbd/pbd')
1217
1218     # set up target directories
1219     lwrcase_dirname = 'ardour' + bld.env['MAJOR']
1220
1221     if bld.is_tracks_build():
1222         bld.env.append_value ('CXXFLAGS', '-DUSE_TRACKS_CODE_FEATURES')
1223         bld.env.append_value ('CFLAGS', '-DUSE_TRACKS_CODE_FEATURES')
1224         lwrcase_dirname = 'trx'
1225
1226     # configuration files go here
1227     bld.env['CONFDIR'] = os.path.join(bld.env['SYSCONFDIR'], lwrcase_dirname)
1228     # data files loaded at run time go here
1229     bld.env['DATADIR'] = os.path.join(bld.env['DATADIR'], lwrcase_dirname)
1230     # shared objects loaded at runtime go here (two aliases)
1231     bld.env['DLLDIR'] = os.path.join(bld.env['LIBDIR'], lwrcase_dirname)
1232     bld.env['LIBDIR'] = bld.env['DLLDIR']
1233     bld.env['LOCALEDIR'] = os.path.join(bld.env['DATADIR'], 'locale')
1234     bld.env['lwrcase_dirname'] = lwrcase_dirname;
1235
1236     autowaf.set_recursive()
1237
1238     if sys.platform == 'darwin':
1239         bld.recurse('libs/appleutility')
1240     elif bld.env['build_target'] != 'mingw':
1241         bld.recurse('tools/sanity_check')
1242         bld.recurse('tools/gccabicheck')
1243
1244     bld.recurse('libs/clearlooks-newer')
1245
1246     for i in children:
1247         bld.recurse(i)
1248
1249     bld.install_files (bld.env['CONFDIR'], 'system_config')
1250
1251     if bld.env['RUN_TESTS']:
1252         bld.add_post_fun(test)
1253
1254 def i18n(bld):
1255     print(bld.env)
1256     bld.recurse (i18n_children)
1257
1258 def i18n_pot(bld):
1259     bld.recurse (i18n_children)
1260
1261 def i18n_po(bld):
1262     bld.recurse (i18n_children)
1263
1264 def i18n_mo(bld):
1265     bld.recurse (i18n_children)
1266
1267 def tarball(bld):
1268     create_stored_revision()
1269
1270 def test(bld):
1271     subprocess.call("gtk2_ardour/artest")