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