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