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