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