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