add --with-wavesbackend config option (disabled by default)
[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
11 def fetch_git_revision ():
12     cmd = "git describe HEAD"
13     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
14     rev = output[0].decode ('utf-8')
15     return rev
16
17 def fetch_tarball_revision ():
18     if not os.path.exists ('libs/ardour/revision.cc'):
19         print ('This tarball was not created correctly - it is missing libs/ardour/revision.cc')
20         sys.exit (1)
21     with open('libs/ardour/revision.cc') as f:
22         content = f.readlines()
23         remove_punctuation_map = dict((ord(char), None) for char in '";')
24         return content[1].decode('utf-8').strip().split(' ')[7].translate (remove_punctuation_map)
25
26 if os.path.isdir (os.path.join(os.getcwd(), '.git')):
27     rev = fetch_git_revision ()
28 else:
29     rev = fetch_tarball_revision ()
30
31 #
32 # rev is now of the form MAJOR.MINOR-rev-commit
33 # or, if right at the same rev as a release, MAJOR.MINOR
34 #
35
36 parts = rev.split ('.')
37 MAJOR = parts[0]
38 other = parts[1].split ('-')
39 MINOR = other[0]
40 if len(other) > 1:
41     MICRO = other[1]
42 else:
43     MICRO = '0'
44
45 V = MAJOR + '.' + MINOR + '.' + MICRO
46 VERSION = V
47 PROGRAM_VERSION = MAJOR
48
49 # Mandatory variables
50 top = '.'
51 out = 'build'
52
53 children = [
54         # optionally external libraries
55         'libs/qm-dsp',
56         'libs/vamp-plugins',
57         'libs/libltc',
58         # core ardour libraries
59         'libs/pbd',
60         'libs/midi++2',
61         'libs/evoral',
62         'libs/surfaces',
63         'libs/panners',
64         'libs/backends',
65         'libs/timecode',
66         'libs/ardour',
67         'libs/gtkmm2ext',
68         'libs/audiographer',
69         'libs/canvas',
70         'libs/plugins/reasonablesynth.lv2',
71         'gtk2_ardour',
72         'export',
73         'midi_maps',
74         'mcp',
75         'patchfiles',
76         'headless',
77         # shared helper binaries (plugin-scanner, exec-wrapper)
78         'libs/fst',
79         'libs/vfork',
80         'libs/ardouralsautil',
81 ]
82
83 i18n_children = [
84         'gtk2_ardour',
85         'libs/ardour',
86         'libs/gtkmm2ext',
87 ]
88
89 # Version stuff
90
91 def fetch_gcc_version (CC):
92     cmd = "%s --version" % CC
93     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
94     o = output[0].decode('utf-8')
95     version = o.split(' ')[2].split('.')
96     return version
97
98 def create_stored_revision():
99     rev = ""
100     if os.path.exists('.git'):
101         rev = fetch_git_revision();
102         print("Git version: " + rev + "\n")
103     elif os.path.exists('libs/ardour/revision.cc'):
104         print("Using packaged revision")
105         return
106     else:
107         print("Missing libs/ardour/revision.cc.  Blame the packager.")
108         sys.exit(-1)
109
110     try:
111         #
112         # if you change the format of this, be sure to fix fetch_tarball_revision() above
113         # so that  it still works.
114         #
115         text =  '#include "ardour/revision.h"\n'
116         text += 'namespace ARDOUR { const char* revision = \"%s\"; }\n' % rev
117         print('Writing revision info to libs/ardour/revision.cc using ' + rev)
118         o = open('libs/ardour/revision.cc', 'w')
119         o.write(text)
120         o.close()
121     except IOError:
122         print('Could not open libs/ardour/revision.cc for writing\n')
123         sys.exit(-1)
124
125 def set_compiler_flags (conf,opt):
126     #
127     # Compiler flags and other system-dependent stuff
128     #
129
130     build_host_supports_sse = False
131
132     # Flags necessary for building
133     compiler_flags = []     # generic
134     c_flags = []            # C-specific
135     cxx_flags = []          # C++-specific
136     linker_flags = []
137
138     # Optimization flags (overridable)
139     optimization_flags = []
140
141     # Debugging flags
142     debug_flags = []
143
144     u = PLATFORM.uname ()
145     cpu = u[4]
146     platform = u[0].lower()
147     version = u[2]
148
149     # waf adds -O0 -g itself. thanks waf!
150     is_clang = conf.env['CXX'][0].endswith('clang++')
151     
152     if conf.options.asan:
153         conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"])
154         cxx_flags.append('-fsanitize=address')
155         cxx_flags.append('-fno-omit-frame-pointer')
156         linker_flags.append('-fsanitize=address')
157
158     if is_clang and platform == "darwin":
159         # Silence warnings about the non-existing osx clang compiler flags
160         # -compatibility_version and -current_version.  These are Waf
161         # generated and not needed with clang
162         cxx_flags.append("-Qunused-arguments")
163         
164     if opt.gprofile:
165         debug_flags = [ '-pg' ]
166
167     # Autodetect
168     if opt.dist_target == 'auto':
169         if platform == 'darwin':
170             # The [.] matches to the dot after the major version, "." would match any character
171             if re.search ("^[0-7][.]", version) != None:
172                 conf.env['build_target'] = 'panther'
173             elif re.search ("^8[.]", version) != None:
174                 conf.env['build_target'] = 'tiger'
175             elif re.search ("^9[.]", version) != None:
176                 conf.env['build_target'] = 'leopard'
177             elif re.search ("^10[.]", version) != None:
178                 conf.env['build_target'] = 'snowleopard'
179             elif re.search ("^11[.]", version) != None:
180                 conf.env['build_target'] = 'lion'
181             elif re.search ("^12[.]", version) != None:
182                 conf.env['build_target'] = 'mountainlion'
183             else:
184                 conf.env['build_target'] = 'mavericks' # 13.0.0
185         else:
186             match = re.search(
187                     "(?P<cpu>i[0-6]86|x86_64|powerpc|ppc|ppc64|arm|s390x?)",
188                     cpu)
189             if (match):
190                 conf.env['build_target'] = match.group("cpu")
191                 if re.search("i[0-5]86", conf.env['build_target']):
192                     conf.env['build_target'] = "i386"
193             else:
194                 conf.env['build_target'] = 'none'
195     else:
196         conf.env['build_target'] = opt.dist_target
197
198     if conf.env['build_target'] == 'snowleopard':
199         #
200         # stupid OS X 10.6 has a bug in math.h that prevents llrint and friends
201         # from being visible.
202         # 
203         compiler_flags.append ('-U__STRICT_ANSI__')
204
205     if conf.options.cxx11 or conf.env['build_target'] == 'mavericks':
206         conf.check_cxx(cxxflags=["-std=c++11"])
207         cxx_flags.append('-std=c++11')
208         if platform == "darwin":
209             cxx_flags.append('-stdlib=libc++')
210             linker_flags.append('-lc++')
211             # Prevents visibility issues in standard headers
212             conf.define("_DARWIN_C_SOURCE", 1)
213
214     if ((re.search ("i[0-9]86", cpu) != None) or (re.search ("x86_64", cpu) != None)) and conf.env['build_target'] != 'none':
215
216
217         #
218         # ARCH_X86 means anything in the x86 family from i386 to x86_64
219         # the compile-time presence of the macro _LP64 is used to 
220         # distingush 32 and 64 bit assembler
221         #
222
223         if (re.search ("(i[0-9]86|x86_64)", cpu) != None):
224             compiler_flags.append ("-DARCH_X86")
225
226         if platform == 'linux' :
227
228             #
229             # determine processor flags via /proc/cpuinfo
230             #
231
232             if conf.env['build_target'] != 'i386':
233
234                 flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
235                 x86_flags = flag_line.split (": ")[1:][0].split ()
236
237                 if "mmx" in x86_flags:
238                     compiler_flags.append ("-mmmx")
239                 if "sse" in x86_flags:
240                     build_host_supports_sse = True
241                 if "3dnow" in x86_flags:
242                     compiler_flags.append ("-m3dnow")
243
244             if cpu == "i586":
245                 compiler_flags.append ("-march=i586")
246             elif cpu == "i686":
247                 compiler_flags.append ("-march=i686")
248
249         if not is_clang and ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse:
250             compiler_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
251
252     # end of processor-specific section
253
254     # optimization section
255     if conf.env['FPU_OPTIMIZATION']:
256         if sys.platform == 'darwin':
257             compiler_flags.append("-DBUILD_VECLIB_OPTIMIZATIONS");
258             conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'Accelerate'])
259         elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64':
260             compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
261         if not build_host_supports_sse:
262             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)")
263
264     # end optimization section
265
266     #
267     # no VST on x86_64
268     #
269
270     if conf.env['build_target'] == 'x86_64' and opt.windows_vst:
271         print("\n\n==================================================")
272         print("You cannot use VST plugins with a 64 bit host. Please run waf with --windows-vst=0")
273         print("\nIt is theoretically possible to build a 32 bit host on a 64 bit system.")
274         print("However, this is tricky and not recommended for beginners.")
275         sys.exit (-1)
276
277     if conf.env['LXVST_SUPPORT'] == True:
278         if conf.env['build_target'] == 'x86_64':
279             compiler_flags.append("-DLXVST_64BIT")
280         else:
281             compiler_flags.append("-DLXVST_32BIT")
282
283     #
284     # a single way to test if we're on OS X
285     #
286
287     if conf.env['build_target'] in ['panther', 'tiger', 'leopard', 'snowleopard' ]:
288         conf.define ('IS_OSX', 1)
289         # force tiger or later, to avoid issues on PPC which defaults
290         # back to 10.1 if we don't tell it otherwise.
291
292         compiler_flags.extend(
293                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1040",
294                  '-mmacosx-version-min=10.4'))
295
296     elif conf.env['build_target'] in [ 'lion', 'mountainlion' ]:
297         compiler_flags.extend(
298                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1070",
299                  '-mmacosx-version-min=10.7'))
300     else:
301         conf.define ('IS_OSX', 0)
302
303     #
304     # save off CPU element in an env
305     #
306     conf.define ('CONFIG_ARCH', cpu)
307
308     #
309     # ARCH="..." overrides all
310     #
311
312     if opt.arch != None:
313         optimization_flags = opt.arch.split()
314
315     #
316     # prepend boiler plate optimization flags that work on all architectures
317     #
318
319     optimization_flags[:0] = ["-pipe"]
320
321     # don't prepend optimization flags if "-O<something>" is present
322     prepend_opt_flags = True
323     for flag in optimization_flags:
324         if flag.startswith("-O"):
325             prepend_opt_flags = False
326             break
327
328     if prepend_opt_flags:
329         optimization_flags[:0] = [
330                 "-O3",
331                 "-fomit-frame-pointer",
332                 "-ffast-math",
333                 "-fstrength-reduce"
334                 ]
335
336     if opt.debug_symbols:
337         optimization_flags += [ '-g' ]
338
339     if opt.stl_debug:
340         cxx_flags.append("-D_GLIBCXX_DEBUG")
341
342     if conf.env['DEBUG_RT_ALLOC']:
343         compiler_flags.append('-DDEBUG_RT_ALLOC')
344         linker_flags.append('-ldl')
345
346     if conf.env['DEBUG_DENORMAL_EXCEPTION']:
347         compiler_flags.append('-DDEBUG_DENORMAL_EXCEPTION')
348
349     if opt.generic:
350         compiler_flags.extend(('-arch', 'i386'))
351         linker_flags.extend(('-arch', 'i386'))
352
353     #
354     # warnings flags
355     #
356
357     compiler_flags.extend(
358             ('-Wall', '-Wpointer-arith', '-Wcast-qual', '-Wcast-align', '-Wno-unused-parameter'))
359
360     c_flags.extend(('-Wstrict-prototypes', '-Wmissing-prototypes'))
361     cxx_flags.append('-Woverloaded-virtual')
362
363     #
364     # more boilerplate
365     #
366
367     # need ISOC9X for llabs()
368     compiler_flags.extend(
369         ('-DBOOST_SYSTEM_NO_DEPRECATED', '-D_ISOC9X_SOURCE',
370          '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64'))
371     cxx_flags.extend(
372         ('-D__STDC_LIMIT_MACROS', '-D__STDC_FORMAT_MACROS', 
373          '-DCANVAS_COMPATIBILITY', '-DCANVAS_DEBUG'))
374     
375     if opt.nls:
376         compiler_flags.append('-DENABLE_NLS')
377
378     compiler_flags.append ('-DPROGRAM_NAME="' + Options.options.program_name + '"')
379     compiler_flags.append ('-DPROGRAM_VERSION="' + PROGRAM_VERSION + '"')
380
381     if opt.debug:
382         conf.env.append_value('CFLAGS', debug_flags)
383         conf.env.append_value('CXXFLAGS', debug_flags)
384     else:
385         conf.env.append_value('CFLAGS', optimization_flags)
386         conf.env.append_value('CXXFLAGS', optimization_flags)
387
388     if opt.backtrace:
389         if platform != 'darwin' and not is_clang and not Options.options.dist_target == 'mingw':
390             linker_flags += [ '-rdynamic' ]
391
392     conf.env.append_value('CFLAGS', compiler_flags)
393     conf.env.append_value('CFLAGS', c_flags)
394     conf.env.append_value('CXXFLAGS', compiler_flags)
395     conf.env.append_value('CXXFLAGS', cxx_flags)
396     conf.env.append_value('LINKFLAGS', linker_flags)
397
398 #----------------------------------------------------------------
399
400 # Waf stages
401
402 def options(opt):
403     opt.load('compiler_c')
404     opt.load('compiler_cxx')
405     autowaf.set_options(opt, debug_by_default=True)
406     opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
407                     help='The user-visible name of the program being built')
408     opt.add_option ('--trx', action='store_true', default=False, dest='trx_build',
409                     help='Whether to build for TRX')
410     opt.add_option('--arch', type='string', action='store', dest='arch',
411                     help='Architecture-specific compiler flags')
412     opt.add_option('--with-dummy', action='store_true', default=False, dest='build_dummy',
413                    help='Build the dummy backend (no audio/MIDI I/O, useful for profiling)')
414     opt.add_option('--with-alsabackend', action='store_true', default=False, dest='build_alsabackend',
415                    help='Build the ALSA backend')
416     opt.add_option('--with-wavesbackend', action='store_true', default=False, dest='build_wavesbackend',
417                    help='Build the Waves/Portaudio backend')
418     opt.add_option('--backtrace', action='store_true', default=True, dest='backtrace',
419                     help='Compile with -rdynamic -- allow obtaining backtraces from within Ardour')
420     opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
421                     help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
422     opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
423                     help='Compile with Boost shared pointer debugging')
424     opt.add_option('--debug-symbols', action='store_true', default=False, dest='debug_symbols',
425                     help='Add debug-symbols to optimized builds')
426     opt.add_option('--depstack-root', type='string', default='~', dest='depstack_root',
427                     help='Directory/folder where dependency stack trees (gtk, a3) can be found (defaults to ~)')
428     opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
429                     help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,tiger,leopard,mingw]')
430     opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
431                     help='Build runtime checked assembler code (default)')
432     opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization')
433     opt.add_option('--exports-hidden', action='store_true', default=False, dest='exports_hidden')
434     opt.add_option('--freedesktop', action='store_true', default=False, dest='freedesktop',
435                     help='Install MIME type, icons and .desktop file as per freedesktop.org standards')
436     opt.add_option('--freebie', action='store_true', default=False, dest='freebie',
437                     help='Build a version suitable for distribution as a zero-cost binary')
438     opt.add_option('--gprofile', action='store_true', default=False, dest='gprofile',
439                     help='Compile for use with gprofile')
440     opt.add_option('--internal-shared-libs', action='store_true', default=True, dest='internal_shared_libs',
441                    help='Build internal libs as shared libraries')
442     opt.add_option('--internal-static-libs', action='store_false', dest='internal_shared_libs',
443                    help='Build internal libs as static libraries')
444     opt.add_option('--use-external-libs', action='store_true', default=False, dest='use_external_libs',
445                    help='Use external/system versions of some bundled libraries')
446     opt.add_option('--lv2', action='store_true', default=True, dest='lv2',
447                     help='Compile with support for LV2 (if Lilv+Suil is available)')
448     opt.add_option('--no-lv2', action='store_false', dest='lv2',
449                     help='Do not compile with support for LV2')
450     opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]")
451     opt.add_option('--lxvst', action='store_true', default=True, dest='lxvst',
452                     help='Compile with support for linuxVST plugins')
453     opt.add_option('--no-lxvst', action='store_false', dest='lxvst',
454                     help='Compile without support for linuxVST plugins')
455     opt.add_option('--nls', action='store_true', default=True, dest='nls',
456                     help='Enable i18n (native language support) (default)')
457     opt.add_option('--no-nls', action='store_false', dest='nls')
458     opt.add_option('--phone-home', action='store_true', default=True, dest='phone_home',
459                    help='Contact ardour.org at startup for new announcements')
460     opt.add_option('--no-phone-home', action='store_false', dest='phone_home',
461                    help='Do not contact ardour.org at startup for new announcements')
462     opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
463                     help='Build with debugging for the STL')
464     opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
465                     help='Build with debugging for memory allocation in the real-time thread')
466     opt.add_option('--pt-timing', action='store_true', default=False, dest='pt_timing',
467                     help='Build with logging of timing in the process thread(s)')
468     opt.add_option('--denormal-exception', action='store_true', default=False, dest='denormal_exception',
469                     help='Raise a floating point exception if a denormal is detected')
470     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
471                     help="Build unit tests")
472     opt.add_option('--run-tests', action='store_true', default=False, dest='run_tests',
473                     help="Run tests after build")
474     opt.add_option('--single-tests', action='store_true', default=False, dest='single_tests',
475                     help="Build a single executable for each unit test")
476     #opt.add_option('--tranzport', action='store_true', default=False, dest='tranzport',
477     # help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
478     opt.add_option('--generic', action='store_true', default=False, dest='generic',
479                     help='Compile with -arch i386 (OS X ONLY)')
480     opt.add_option('--versioned', action='store_true', default=False, dest='versioned',
481                     help='Add revision information to executable name inside the build directory')
482     opt.add_option('--windows-vst', action='store_true', default=False, dest='windows_vst',
483                     help='Compile with support for Windows VST')
484     opt.add_option('--windows-key', type='string', action='store', dest='windows_key', default='Mod4><Super',
485                     help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
486                     'Multiple modifiers must be separated by \'><\'')
487     opt.add_option('--boost-include', type='string', action='store', dest='boost_include', default='',
488                     help='directory where Boost header files can be found')
489     opt.add_option('--also-include', type='string', action='store', dest='also_include', default='',
490                     help='additional include directory where header files can be found (split multiples with commas)')
491     opt.add_option('--also-libdir', type='string', action='store', dest='also_libdir', default='',
492                     help='additional include directory where shared libraries can be found (split multiples with commas)')
493     opt.add_option('--wine-include', type='string', action='store', dest='wine_include', default='/usr/include/wine/windows',
494                     help='directory where Wine\'s Windows header files can be found')
495     opt.add_option('--noconfirm', action='store_true', default=False, dest='noconfirm',
496                     help='Do not ask questions that require confirmation during the build')
497     opt.add_option('--cxx11', action='store_true', default=False, dest='cxx11',
498                     help='Turn on c++11 compiler flags (-std=c++11)')
499     opt.add_option('--address-sanitizer', action='store_true', default=False, dest='asan',
500                     help='Turn on AddressSanitizer (requires GCC >= 4.8 or clang >= 3.1)')
501     for i in children:
502         opt.recurse(i)
503
504 def sub_config_and_use(conf, name, has_objects = True):
505     conf.recurse(name)
506     autowaf.set_local_lib(conf, name, has_objects)
507
508 def configure(conf):
509     conf.load('compiler_c')
510     conf.load('compiler_cxx')
511     conf.env['VERSION'] = VERSION
512     conf.env['MAJOR'] = MAJOR
513     conf.env['MINOR'] = MINOR
514     conf.line_just = 52
515     autowaf.set_recursive()
516     autowaf.configure(conf)
517     autowaf.display_header('Ardour Configuration')
518
519     gcc_versions = fetch_gcc_version(str(conf.env['CC']))
520     if not Options.options.debug and gcc_versions[0] == '4' and gcc_versions[1] > '4':
521         print('Version 4.5 of gcc is not ready for use when compiling Ardour with optimization.')
522         print('Please use a different version or re-configure with --debug')
523         exit (1)
524
525     # systems with glibc have libintl builtin. systems without require explicit
526     # linkage against libintl.
527     #
528
529     pkg_config_path = os.getenv('PKG_CONFIG_PATH')
530     user_gtk_root = os.path.expanduser (Options.options.depstack_root + '/gtk/inst')
531
532     if pkg_config_path is not None and pkg_config_path.find (user_gtk_root) >= 0:
533         # told to search user_gtk_root
534         prefinclude = ''.join ([ '-I', user_gtk_root + '/include'])
535         preflib = ''.join ([ '-L', user_gtk_root + '/lib'])
536         conf.env.append_value('CFLAGS', [ prefinclude ])
537         conf.env.append_value('CXXFLAGS',  [prefinclude ])
538         conf.env.append_value('LINKFLAGS', [ preflib ])
539         autowaf.display_msg(conf, 'Will build against private GTK dependency stack in ' + user_gtk_root, 'yes')
540     else:
541         autowaf.display_msg(conf, 'Will build against private GTK dependency stack', 'no')
542
543     if sys.platform == 'darwin':
544         conf.define ('NEED_INTL', 1)
545         autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ' + user_gtk_root, 'yes')
546     else:
547         # libintl is part of the system, so use it
548         autowaf.display_msg(conf, 'Will rely on libintl built into libc', 'yes')
549             
550     user_ardour_root = os.path.expanduser (Options.options.depstack_root + '/a3/inst')
551     if pkg_config_path is not None and pkg_config_path.find (user_ardour_root) >= 0:
552         # told to search user_ardour_root
553         prefinclude = ''.join ([ '-I', user_ardour_root + '/include'])
554         preflib = ''.join ([ '-L', user_ardour_root + '/lib'])
555         conf.env.append_value('CFLAGS', [ prefinclude ])
556         conf.env.append_value('CXXFLAGS',  [prefinclude ])
557         conf.env.append_value('LINKFLAGS', [ preflib ])
558         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack in ' + user_ardour_root, 'yes')
559     else:
560         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack', 'no')
561         
562     if Options.options.freebie:
563         conf.env.append_value ('CFLAGS', '-DNO_PLUGIN_STATE')
564         conf.env.append_value ('CXXFLAGS', '-DNO_PLUGIN_STATE')
565         conf.define ('NO_PLUGIN_STATE', 1)
566
567     if Options.options.trx_build:
568         conf.define ('TRX_BUILD', 1)
569
570     if Options.options.lv2dir:
571         conf.env['LV2DIR'] = Options.options.lv2dir
572     else:
573         conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'lv2')
574
575     conf.env['LV2DIR'] = os.path.normpath(conf.env['LV2DIR'])
576
577     if sys.platform == 'darwin':
578
579         # this is required, potentially, for anything we link and then relocate into a bundle
580         conf.env.append_value('LINKFLAGS', [ '-Xlinker', '-headerpad_max_install_names' ])
581
582         conf.define ('HAVE_COREAUDIO', 1)
583         conf.define ('AUDIOUNIT_SUPPORT', 1)
584
585         conf.define ('GTKOSX', 1)
586         conf.define ('TOP_MENUBAR',1)
587         conf.define ('GTKOSX',1)
588
589         # It would be nice to be able to use this to force back-compatibility with 10.4
590         # but even by the time of 11, the 10.4 SDK is no longer available in any normal
591         # way.
592         #
593         #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
594         #conf.env.append_value('CFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
595         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
596         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
597
598         conf.env.append_value('CXXFLAGS_OSX', "-msse")
599         conf.env.append_value('CFLAGS_OSX', "-msse")
600         conf.env.append_value('CXXFLAGS_OSX', "-msse2")
601         conf.env.append_value('CFLAGS_OSX', "-msse2")
602         #
603         #       TODO: The previous sse flags NEED to be based
604         #       off processor type.  Need to add in a check
605         #       for that.
606         #
607         conf.env.append_value('CXXFLAGS_OSX', '-F/System/Library/Frameworks')
608         conf.env.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
609
610         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
611         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
612         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudioKit'])
613         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
614         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
615
616         conf.env.append_value('LINKFLAGS_OSX', ['-undefined', 'dynamic_lookup' ])
617         conf.env.append_value('LINKFLAGS_OSX', ['-flat_namespace'])
618
619         conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAUDIOUNIT_SUPPORT")
620         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'AudioToolbox', '-framework', 'AudioUnit'])
621         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Cocoa'])
622
623         if re.search ("^[1-9][0-9]\.", os.uname()[2]) == None and not Options.options.nocarbon:
624             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DWITH_CARBON")
625             conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Carbon'])
626         else:
627             print ('No Carbon support available for this build\n')
628
629
630     if Options.options.internal_shared_libs: 
631         conf.define('INTERNAL_SHARED_LIBS', 1)
632
633     if Options.options.use_external_libs:
634         conf.define('USE_EXTERNAL_LIBS', 1)
635
636     if Options.options.boost_include != '':
637         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
638
639     if Options.options.also_include != '':
640         conf.env.append_value('CXXFLAGS', '-I' + Options.options.also_include)
641         conf.env.append_value('CFLAGS', '-I' + Options.options.also_include)
642
643     if Options.options.also_libdir != '':
644         conf.env.append_value('LDFLAGS', '-L' + Options.options.also_libdir)
645
646     if Options.options.boost_sp_debug:
647         conf.env.append_value('CXXFLAGS', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
648
649     # executing a test program is n/a when cross-compiling
650     if Options.options.dist_target != 'mingw':
651         conf.check_cc(function_name='dlopen', header_name='dlfcn.h', lib='dl', uselib_store='DL')
652         conf.check_cxx(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
653                   execute = "1",
654                   mandatory = True,
655                   msg = 'Checking for boost library >= 1.39',
656                   okmsg = 'ok',
657                   errmsg = 'too old\nPlease install boost version 1.39 or higher.')
658
659     if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw':
660         autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
661
662     autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2', mandatory=True)
663     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
664     autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
665     autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18, mandatory=True')
666     autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2', mandatory=True)
667     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True)
668     autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True)
669     autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True)
670     autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.4', mandatory=True)
671     autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.4', mandatory=True)
672     autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', mandatory=True)
673
674     if Options.options.dist_target == 'mingw':
675         Options.options.fpu_optimization = False
676         conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS')
677         conf.env.append_value('CFLAGS', '-DCOMPILER_MINGW')
678         conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS')
679         conf.env.append_value('CXXFLAGS', '-DCOMPILER_MINGW')
680         conf.env.append_value('LIB', 'pthread')
681         # needed for at least libsmf
682         conf.check_cc(function_name='htonl', header_name='winsock2.h', lib='ws2_32')
683         conf.env.append_value('LIB', 'ws2_32')
684         # needed for mingw64 packages, not harmful on normal mingw build
685         conf.env.append_value('LIB', 'intl')
686         conf.check_cc(function_name='regcomp', header_name='regex.h',
687                       lib='regex', uselib_store="REGEX", define_name='HAVE_REGEX_H')
688         # TODO put this only where it is needed
689         conf.env.append_value('LIB', 'regex')
690
691     # Tell everyone that this is a waf build
692
693     conf.env.append_value('CFLAGS', '-DWAF_BUILD')
694     conf.env.append_value('CXXFLAGS', '-DWAF_BUILD')
695
696     opts = Options.options
697
698     # (optionally) Adopt Microsoft-like convention that makes all non-explicitly exported
699     # symbols invisible (rather than doing this all over the wscripts in the src tree)
700     #
701     # This won't apply to MSVC but that hasn't been added as a target yet
702     #
703     # We can't do this till all tests are complete, since some fail if this is et.
704     if opts.exports_hidden:
705         conf.define ('EXPORT_VISIBILITY_HIDDEN', True)
706         if opts.internal_shared_libs:
707             conf.env.append_value ('CXXFLAGS', '-fvisibility=hidden')
708             conf.env.append_value ('CFLAGS', '-fvisibility=hidden')
709     else:
710         conf.define ('EXPORT_VISIBILITY_HIDDEN', False)
711
712     # Set up waf environment and C defines
713     if opts.phone_home:
714         conf.define('PHONE_HOME', 1)
715         conf.env['PHONE_HOME'] = True
716     if opts.fpu_optimization:
717         conf.env['FPU_OPTIMIZATION'] = True
718     if opts.nls:
719         conf.define('ENABLE_NLS', 1)
720         conf.env['ENABLE_NLS'] = True
721     if opts.build_tests:
722         conf.env['BUILD_TESTS'] = True
723         conf.env['RUN_TESTS'] = opts.run_tests
724     if opts.single_tests:
725         conf.env['SINGLE_TESTS'] = opts.single_tests
726     #if opts.tranzport:
727     #    conf.env['TRANZPORT'] = 1
728     if opts.windows_vst:
729         conf.define('WINDOWS_VST_SUPPORT', 1)
730         conf.env['WINDOWS_VST_SUPPORT'] = True
731         if not Options.options.dist_target == 'mingw':
732             conf.env.append_value('CFLAGS', '-I' + Options.options.wine_include)
733             conf.env.append_value('CXXFLAGS', '-I' + Options.options.wine_include)
734             autowaf.check_header(conf, 'cxx', 'windows.h', mandatory = True)
735     if opts.lxvst:
736         if sys.platform == 'darwin':
737             conf.env['LXVST_SUPPORT'] = False
738         elif Options.options.dist_target == 'mingw':
739             conf.env['LXVST_SUPPORT'] = False
740         else:
741             conf.define('LXVST_SUPPORT', 1)
742             conf.env['LXVST_SUPPORT'] = True
743     conf.env['WINDOWS_KEY'] = opts.windows_key
744     if opts.rt_alloc_debug:
745         conf.define('DEBUG_RT_ALLOC', 1)
746         conf.env['DEBUG_RT_ALLOC'] = True
747     if opts.pt_timing:
748         conf.define('PT_TIMING', 1)
749         conf.env['PT_TIMING'] = True
750     if opts.denormal_exception:
751         conf.define('DEBUG_DENORMAL_EXCEPTION', 1)
752         conf.env['DEBUG_DENORMAL_EXCEPTION'] = True
753     if opts.build_tests:
754         autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=True)
755     if opts.build_alsabackend:
756         conf.env['BUILD_ALSABACKEND'] = True
757     if opts.build_dummy:
758         conf.env['BUILD_DUMMYBACKEND'] = True
759     if opts.build_wavesbackend:
760         conf.env['BUILD_WAVESBACKEND'] = True
761
762     set_compiler_flags (conf, Options.options)
763
764     if sys.platform == 'darwin':
765         sub_config_and_use(conf, 'libs/appleutility')
766     elif Options.options.dist_target != 'mingw':
767         sub_config_and_use(conf, 'tools/sanity_check')
768
769     sub_config_and_use(conf, 'libs/clearlooks-newer')
770
771     for i in children:
772         sub_config_and_use(conf, i)
773
774     # Fix utterly braindead FLAC include path to not smash assert.h
775     conf.env['INCLUDES_FLAC'] = []
776
777     config_text = open('libs/ardour/config_text.cc', "w")
778     config_text.write('''#include "ardour/ardour.h"
779 namespace ARDOUR {
780 const char* const ardour_config_info = "\\n\\
781 ''')
782
783     def write_config_text(title, val):
784         autowaf.display_msg(conf, title, val)
785         config_text.write(title + ': ')
786         config_text.write(str(val).replace ('"', '\\"'))
787         config_text.write("\\n\\\n")
788
789     write_config_text('Build documentation',   conf.env['DOCS'])
790     write_config_text('Debuggable build',      conf.env['DEBUG'])
791     write_config_text('Export all symbols (backtrace)', opts.backtrace)
792     write_config_text('Install prefix',        conf.env['PREFIX'])
793     write_config_text('Strict compiler flags', conf.env['STRICT'])
794     write_config_text('Internal Shared Libraries', conf.is_defined('INTERNAL_SHARED_LIBS'))
795     write_config_text('Use External Libraries', conf.is_defined('USE_EXTERNAL_LIBS'))
796     write_config_text('Library exports hidden', conf.is_defined('EXPORT_VISIBILITY_HIDDEN'))
797
798     write_config_text('ALSA Backend',          opts.build_alsabackend)
799     write_config_text('ALSA DBus Reservation', conf.is_defined('HAVE_DBUS'))
800     write_config_text('Architecture flags',    opts.arch)
801     write_config_text('Aubio',                 conf.is_defined('HAVE_AUBIO'))
802     write_config_text('AudioUnits',            conf.is_defined('AUDIOUNIT_SUPPORT'))
803     write_config_text('No plugin state',       conf.is_defined('NO_PLUGIN_STATE'))
804     write_config_text('Build target',          conf.env['build_target'])
805     write_config_text('CoreAudio',             conf.is_defined('HAVE_COREAUDIO'))
806     write_config_text('Debug RT allocations',  conf.is_defined('DEBUG_RT_ALLOC'))
807     write_config_text('Debug Symbols',         conf.is_defined('debug_symbols') or conf.env['DEBUG'])
808     write_config_text('Dummy backend',         opts.build_dummy)
809     write_config_text('Process thread timing', conf.is_defined('PT_TIMING'))
810     write_config_text('Denormal exceptions',   conf.is_defined('DEBUG_DENORMAL_EXCEPTION'))
811     write_config_text('FLAC',                  conf.is_defined('HAVE_FLAC'))
812     write_config_text('FPU optimization',      opts.fpu_optimization)
813     write_config_text('Freedesktop files',     opts.freedesktop)
814     write_config_text('LV2 UI embedding',      conf.is_defined('HAVE_SUIL'))
815     write_config_text('LV2 support',           conf.is_defined('LV2_SUPPORT'))
816     write_config_text('LXVST support',         conf.is_defined('LXVST_SUPPORT'))
817     write_config_text('OGG',                   conf.is_defined('HAVE_OGG'))
818     write_config_text('Phone home',            conf.is_defined('PHONE_HOME'))
819     write_config_text('Program name',          opts.program_name)
820     write_config_text('Samplerate',            conf.is_defined('HAVE_SAMPLERATE'))
821 #    write_config_text('Soundtouch',            conf.is_defined('HAVE_SOUNDTOUCH'))
822     write_config_text('Translation',           opts.nls)
823 #    write_config_text('Tranzport',             opts.tranzport)
824     write_config_text('Unit tests',            conf.env['BUILD_TESTS'])
825     write_config_text('Generic x86 CPU',       opts.generic)
826     write_config_text('Waves Backend',         opts.build_wavesbackend)
827     write_config_text('Windows VST support',   opts.windows_vst)
828     write_config_text('Wiimote support',       conf.is_defined('BUILD_WIIMOTE'))
829     write_config_text('Windows key',           opts.windows_key)
830
831     write_config_text('C compiler flags',      conf.env['CFLAGS'])
832     write_config_text('C++ compiler flags',    conf.env['CXXFLAGS'])
833     write_config_text('Linker flags',          conf.env['LINKFLAGS'])
834
835     config_text.write ('";\n}\n')
836     config_text.close ()
837     print('')
838
839 def build(bld):
840     create_stored_revision()
841
842     # add directories that contain only headers, to workaround an issue with waf
843
844     if not bld.is_defined('USE_EXTERNAL_LIBS'):
845         bld.path.find_dir ('libs/libltc/ltc')
846     bld.path.find_dir ('libs/evoral/evoral')
847     bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
848     bld.path.find_dir ('libs/timecode/timecode')
849     bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
850     bld.path.find_dir ('libs/ardour/ardour')
851     bld.path.find_dir ('libs/pbd/pbd')
852
853     # set up target directories
854     lwrcase_dirname = 'ardour3'
855
856     if bld.is_defined ('TRX_BUILD'):
857         lwrcase_dirname = 'trx'
858
859     # configuration files go here
860     bld.env['CONFDIR'] = os.path.join(bld.env['SYSCONFDIR'], lwrcase_dirname)
861     # data files loaded at run time go here
862     bld.env['DATADIR'] = os.path.join(bld.env['DATADIR'], lwrcase_dirname)
863     # shared objects loaded at runtime go here (two aliases)
864     bld.env['DLLDIR'] = os.path.join(bld.env['LIBDIR'], lwrcase_dirname)
865     bld.env['LIBDIR'] = bld.env['DLLDIR']
866
867     autowaf.set_recursive()
868
869     if sys.platform == 'darwin':
870         bld.recurse('libs/appleutility')
871     elif bld.env['build_target'] != 'mingw':
872         bld.recurse('tools/sanity_check')
873
874     bld.recurse('libs/clearlooks-newer')
875
876     for i in children:
877         bld.recurse(i)
878
879     bld.install_files (bld.env['CONFDIR'], 'system_config')
880
881     if bld.env['RUN_TESTS']:
882         bld.add_post_fun(test)
883
884 def i18n(bld):
885     bld.recurse (i18n_children)
886
887 def i18n_pot(bld):
888     bld.recurse (i18n_children)
889
890 def i18n_po(bld):
891     bld.recurse (i18n_children)
892
893 def i18n_mo(bld):
894     bld.recurse (i18n_children)
895
896 def tarball(bld):
897     create_stored_revision()
898
899 def test(bld):
900     subprocess.call("gtk2_ardour/artest")