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