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