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