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