Move some bits from MonoPanner and StereoPanner into a
[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.0beta1a'
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 opt.universal:
314         if not Options.options.nocarbon:
315             conf.env.append_value('CFLAGS', ["-arch", "i386", "-arch", "ppc"])
316             conf.env.append_value('CXXFLAGS', ["-arch", "i386", "-arch", "ppc"])
317             conf.env.append_value('LINKFLAGS', ["-arch", "i386", "-arch", "ppc"])
318         else:
319             conf.env.append_value('CFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
320             conf.env.append_value('CXXFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
321             conf.env.append_value('LINKFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
322
323     #
324     # warnings flags
325     #
326
327     conf.env.append_value('CFLAGS', "-Wall")
328     conf.env.append_value('CXXFLAGS', [ '-Wall', '-Woverloaded-virtual'])
329
330
331     #
332     # more boilerplate
333     #
334
335     conf.env.append_value('CFLAGS', '-D_LARGEFILE64_SOURCE')
336     conf.env.append_value('CFLAGS', '-D_FILE_OFFSET_BITS=64')
337     conf.env.append_value('CXXFLAGS', '-D_LARGEFILE64_SOURCE')
338     conf.env.append_value('CXXFLAGS', '-D_FILE_OFFSET_BITS=64')
339
340     conf.env.append_value('CXXFLAGS', '-D__STDC_LIMIT_MACROS')
341     conf.env.append_value('CXXFLAGS', '-D__STDC_FORMAT_MACROS')
342
343     if opt.nls:
344         conf.env.append_value('CXXFLAGS', '-DENABLE_NLS')
345         conf.env.append_value('CFLAGS', '-DENABLE_NLS')
346
347 #----------------------------------------------------------------
348
349 # Waf stages
350
351 def options(opt):
352     opt.load('compiler_c')
353     opt.load('compiler_cxx')
354     autowaf.set_options(opt, debug_by_default=True)
355     opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
356                     help='The user-visible name of the program being built')
357     opt.add_option('--arch', type='string', action='store', dest='arch',
358                     help='Architecture-specific compiler flags')
359     opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
360                     help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
361     opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
362                     help='Compile with Boost shared pointer debugging')
363     opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
364                     help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,powerpc,tiger,leopard]')
365     opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
366                     help='Build runtime checked assembler code (default)')
367     opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization')
368     opt.add_option('--freedesktop', action='store_true', default=False, dest='freedesktop',
369                     help='Install MIME type, icons and .desktop file as per freedesktop.org standards')
370     opt.add_option('--freebie', action='store_true', default=False, dest='freebie',
371                     help='Build a version suitable for distribution as a zero-cost binary')
372     opt.add_option('--no-freesound', action='store_false', default=True, dest='freesound',
373                     help='Do not build with Freesound database support')
374     opt.add_option('--gprofile', action='store_true', default=False, dest='gprofile',
375                     help='Compile for use with gprofile')
376     opt.add_option('--lv2', action='store_true', default=True, dest='lv2',
377                     help='Compile with support for LV2 (if Lilv+Suil is available)')
378     opt.add_option('--no-lv2', action='store_false', dest='lv2',
379                     help='Do not compile with support for LV2')
380     opt.add_option('--lxvst', action='store_true', default=lxvst_default, dest='lxvst',
381                     help='Compile with support for linuxVST plugins')
382     opt.add_option('--nls', action='store_true', default=True, dest='nls',
383                     help='Enable i18n (native language support) (default)')
384     opt.add_option('--no-nls', action='store_false', dest='nls')
385     opt.add_option('--phone-home', action='store_false', default=False, dest='phone_home')
386     opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
387                     help='Build with debugging for the STL')
388     opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
389                     help='Build with debugging for memory allocation in the real-time thread')
390     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
391                     help="Build unit tests")
392     opt.add_option('--tranzport', action='store_true', default=False, dest='tranzport',
393                     help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
394     opt.add_option('--universal', action='store_true', default=False, dest='universal',
395                     help='Compile as universal binary (requires that external libraries are universal)')
396     opt.add_option('--versioned', action='store_true', default=False, dest='versioned',
397                     help='Add revision information to executable name inside the build directory')
398     opt.add_option('--windows-vst', action='store_true', default=False, dest='windows_vst',
399                     help='Compile with support for Windows VST')
400     opt.add_option('--wiimote', action='store_true', default=False, dest='wiimote',
401                     help='Build the wiimote control surface')
402     opt.add_option('--windows-key', type='string', action='store', dest='windows_key', default='Mod4><Super',
403                     help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
404                     'Multiple modifiers must be separated by \'><\'')
405     opt.add_option('--boost-include', type='string', action='store', dest='boost_include', default='',
406                     help='directory where Boost header files can be found')
407     opt.add_option('--also-include', type='string', action='store', dest='also_include', default='',
408                     help='additional include directory where header files can be found')
409     opt.add_option('--wine-include', type='string', action='store', dest='wine_include', default='/usr/include/wine/windows',
410                     help='directory where Wine\'s Windows header files can be found')
411     opt.add_option('--noconfirm', action='store_true', default=False, dest='noconfirm',
412                     help='Do not ask questions that require confirmation during the build')
413     for i in children:
414         opt.recurse(i)
415
416 def sub_config_and_use(conf, name, has_objects = True):
417     conf.recurse(name)
418     autowaf.set_local_lib(conf, name, has_objects)
419
420 def configure(conf):
421     conf.load('compiler_c')
422     conf.load('compiler_cxx')
423     if not Options.options.noconfirm:
424         print ('\n\nThis is a beta version of Ardour 3.0.\n\n' +
425                'You are respectfully requested NOT to ask for assistance with build issues\n' +
426                'and not to report issues with Ardour 3.0 on the forums at ardour.org.\n\n' +
427                'Please use IRC, the bug tracker and/or the ardour mailing lists (-dev or -user)\n\n' +
428                'Thanks for your co-operation with our development process.\n\n' +
429                'Press Enter to continue.\n')
430         sys.stdin.readline()
431     create_stored_revision()
432     conf.env['VERSION'] = VERSION
433     conf.line_just = 52
434     autowaf.set_recursive()
435     autowaf.configure(conf)
436     autowaf.display_header('Ardour Configuration')
437
438     gcc_versions = fetch_gcc_version(str(conf.env['CC']))
439     if not Options.options.debug and gcc_versions[0] == '4' and gcc_versions[1] > '4':
440         print('Version 4.5 of gcc is not ready for use when compiling Ardour with optimization.')
441         print('Please use a different version or re-configure with --debug')
442         exit (1)
443
444     if sys.platform == 'darwin':
445
446         # this is required, potentially, for anything we link and then relocate into a bundle
447         conf.env.append_value('LINKFLAGS', [ '-Xlinker', '-headerpad', '-Xlinker', '2048'])
448
449         conf.define ('HAVE_COREAUDIO', 1)
450         conf.define ('AUDIOUNIT_SUPPORT', 1)
451         if not Options.options.nocarbon:
452             conf.define ('WITH_CARBON', 1)
453         if not Options.options.freebie:
454             conf.define ('AU_STATE_SUPPORT', 1)
455
456         conf.define ('GTKOSX', 1)
457         conf.define ('TOP_MENUBAR',1)
458         conf.define ('GTKOSX',1)
459
460         conf.env.append_value('CXXFLAGS_APPLEUTILITY', '-I../libs')
461         #
462         #       Define OSX as a uselib to use when compiling
463         #       on Darwin to add all applicable flags at once
464         #
465         conf.env.append_value('CXXFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
466         conf.env.append_value('CFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
467         conf.env.append_value('CXXFLAGS_OSX', '-mmacosx-version-min=10.4')
468         conf.env.append_value('CFLAGS_OSX', '-mmacosx-version-min=10.4')
469
470         #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
471         #conf.env.append_value('CFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
472         #conf.env.append_value('LINKFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
473
474         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
475
476         conf.env.append_value('CXXFLAGS_OSX', "-msse")
477         conf.env.append_value('CFLAGS_OSX', "-msse")
478         conf.env.append_value('CXXFLAGS_OSX', "-msse2")
479         conf.env.append_value('CFLAGS_OSX', "-msse2")
480         #
481         #       TODO: The previous sse flags NEED to be based
482         #       off processor type.  Need to add in a check
483         #       for that.
484         #
485         conf.env.append_value('CXXFLAGS_OSX', '-F/System/LibraryFrameworks')
486         conf.env.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
487
488         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
489         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
490         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudioKit'])
491         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
492         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
493
494         conf.env.append_value('LINKFLAGS_OSX', ['-undefined', 'dynamic_lookup' ])
495         conf.env.append_value('LINKFLAGS_OSX', ['-flat_namespace'])
496
497         conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAUDIOUNIT_SUPPORT")
498         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Audiotoolbox', '-framework', 'AudioUnit'])
499         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Cocoa'])
500
501         if not Options.options.freebie:
502             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAU_STATE_SUPPORT")
503         if not Options.options.nocarbon:
504             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DWITH_CARBON")
505             conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Carbon'])
506
507     if Options.options.boost_include != '':
508         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
509
510     if Options.options.also_include != '':
511         conf.env.append_value('CXXFLAGS', '-I' + Options.options.also_include)
512         conf.env.append_value('CFLAGS', '-I' + Options.options.also_include)
513
514     autowaf.check_header(conf, 'cxx', 'boost/signals2.hpp', mandatory = True)
515
516     if Options.options.boost_sp_debug:
517         conf.env.append_value('CXXFLAGS', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
518
519     autowaf.check_header(conf, 'cxx', 'jack/session.h', define="JACK_SESSION", mandatory = False)
520
521     conf.check_cxx(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
522                   execute = "1",
523                   mandatory = True,
524                   msg = 'Checking for boost library >= 1.39',
525                   okmsg = 'ok',
526                   errmsg = 'too old\nPlease install boost version 1.39 or higher.')
527
528     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
529     autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2')
530     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2')
531     autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0')
532     autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18')
533     autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2')
534
535     for i in children:
536         sub_config_and_use(conf, i)
537
538     # Fix utterly braindead FLAC include path to not smash assert.h
539     conf.env['INCLUDES_FLAC'] = []
540
541     conf.check_cc(function_name='dlopen', header_name='dlfcn.h', linkflags='-ldl', uselib_store='DL')
542     conf.check_cc(function_name='curl_global_init', header_name='curl/curl.h', linkflags='-lcurl', uselib_store='CURL')
543
544     # Tell everyone that this is a waf build
545
546     conf.env.append_value('CFLAGS', '-DWAF_BUILD')
547     conf.env.append_value('CXXFLAGS', '-DWAF_BUILD')
548
549     # Set up waf environment and C defines
550     opts = Options.options
551     if opts.debug:
552         opts.phone_home = False;   # debug builds should not call home
553     if opts.phone_home:
554         conf.env['PHONE_HOME'] = opts.phone_home
555     if opts.fpu_optimization:
556         conf.env['FPU_OPTIMIZATION'] = True
557     if opts.freesound:
558         conf.define('FREESOUND',1)
559         conf.env['FREESOUND'] = True
560     if opts.nls:
561         conf.define('ENABLE_NLS', 1)
562         conf.env['ENABLE_NLS'] = True
563     if opts.build_tests:
564         conf.env['BUILD_TESTS'] = opts.build_tests
565     if opts.tranzport:
566         conf.env['TRANZPORT'] = 1
567     if opts.windows_vst:
568         conf.define('WINDOWS_VST_SUPPORT', 1)
569         conf.env['WINDOWS_VST_SUPPORT'] = True
570         conf.env.append_value('CFLAGS', '-I' + Options.options.wine_include)
571         conf.env.append_value('CXXFLAGS', '-I' + Options.options.wine_include)
572         autowaf.check_header(conf, 'cxx', 'windows.h', mandatory = True)
573     if opts.lxvst:
574         conf.define('LXVST_SUPPORT', 1)
575         conf.env['LXVST_SUPPORT'] = True
576     if bool(conf.env['JACK_SESSION']):
577         conf.define('HAVE_JACK_SESSION', 1)
578     if opts.wiimote:
579         conf.define('WIIMOTE', 1)
580         conf.env['WIIMOTE'] = True
581     conf.define('WINDOWS_KEY', opts.windows_key)
582     conf.env['PROGRAM_NAME'] = opts.program_name
583     if opts.rt_alloc_debug:
584         conf.define('DEBUG_RT_ALLOC', 1)
585     if not conf.is_defined('HAVE_CPPUNIT'):
586         conf.env['BUILD_TESTS'] = False
587
588     set_compiler_flags (conf, Options.options)
589
590     config_text = open('libs/ardour/config_text.cc', "w")
591     config_text.write('''#include "ardour/ardour.h"
592 namespace ARDOUR {
593 const char* const ardour_config_info = "\\n\\
594 ''')
595
596     def write_config_text(title, val):
597         autowaf.display_msg(conf, title, val)
598         config_text.write(title + ': ')
599         config_text.write(str(val))
600         config_text.write("\\n\\\n")
601
602     write_config_text('Build documentation',   conf.env['DOCS'])
603     write_config_text('Debuggable build',      conf.env['DEBUG'])
604     write_config_text('Install prefix',        conf.env['PREFIX'])
605     write_config_text('Strict compiler flags', conf.env['STRICT'])
606
607     write_config_text('Architecture flags',    opts.arch)
608     write_config_text('Aubio',                 conf.is_defined('HAVE_AUBIO'))
609     write_config_text('AudioUnits',            conf.is_defined('AUDIOUNIT_SUPPORT'))
610     write_config_text('AU state support',      conf.is_defined('AU_STATE_SUPPORT'))
611     write_config_text('Build target',          conf.env['build_target'])
612     write_config_text('CoreAudio',             conf.is_defined('HAVE_COREAUDIO'))
613     write_config_text('FLAC',                  conf.is_defined('HAVE_FLAC'))
614     write_config_text('FPU optimization',      opts.fpu_optimization)
615     write_config_text('Freedesktop files',     opts.freedesktop)
616     write_config_text('Freesound',             opts.freesound)
617     write_config_text('JACK session support',  conf.is_defined('JACK_SESSION'))
618     write_config_text('LV2 UI embedding',      conf.is_defined('HAVE_SUIL'))
619     write_config_text('LV2 support',           conf.is_defined('LV2_SUPPORT'))
620     write_config_text('LXVST support',         conf.is_defined('LXVST_SUPPORT'))
621     write_config_text('OGG',                   conf.is_defined('HAVE_OGG'))
622     write_config_text('Phone home',            conf.is_defined('PHONE_HOME'))
623     write_config_text('Program name',          opts.program_name)
624     write_config_text('Rubberband',            conf.is_defined('HAVE_RUBBERBAND'))
625     write_config_text('Samplerate',            conf.is_defined('HAVE_SAMPLERATE'))
626 #    write_config_text('Soundtouch',            conf.is_defined('HAVE_SOUNDTOUCH'))
627     write_config_text('Translation',           opts.nls)
628     write_config_text('Tranzport',             opts.tranzport)
629     write_config_text('Unit tests',            conf.env['BUILD_TESTS'])
630     write_config_text('Universal binary',      opts.universal)
631     write_config_text('Windows VST support',   opts.windows_vst)
632     write_config_text('Wiimote support',       opts.wiimote)
633     write_config_text('Windows key',           opts.windows_key)
634
635     write_config_text('C compiler flags',      conf.env['CFLAGS'])
636     write_config_text('C++ compiler flags',    conf.env['CXXFLAGS'])
637
638     config_text.write ('";\n}\n')
639     config_text.close ()
640     print('')
641
642 def build(bld):
643     # add directories that contain only headers, to workaround an issue with waf
644
645     bld.path.find_dir ('libs/evoral/evoral')
646     bld.path.find_dir ('libs/vamp-sdk/vamp-sdk')
647     bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
648     bld.path.find_dir ('libs/timecode/timecode')
649     bld.path.find_dir ('libs/rubberband/rubberband')
650     bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
651     bld.path.find_dir ('libs/ardour/ardour')
652     bld.path.find_dir ('libs/taglib/taglib')
653     bld.path.find_dir ('libs/pbd/pbd')
654
655     autowaf.set_recursive()
656
657     for i in children:
658         bld.recurse(i)
659
660     # ideally, we'd like to use the OS-provided MIDI API
661     # for default ports. that doesn't work on at least
662     # Fedora (Nov 9th, 2009) so use JACK MIDI on linux.
663
664     if sys.platform == 'darwin':
665         rc_subst_dict = {
666                 'MIDITAG'    : 'control',
667                 'MIDITYPE'   : 'coremidi',
668                 'JACK_INPUT' : 'auditioner'
669                 }
670     else:
671         rc_subst_dict = {
672                 'MIDITAG'    : 'control',
673                 'MIDITYPE'   : 'jack',
674                 'JACK_INPUT' : 'auditioner'
675                 }
676
677     obj              = bld(features = 'subst')
678     obj.source       = 'ardour.rc.in'
679     obj.target       = 'ardour_system.rc'
680     obj.dict         = rc_subst_dict
681     obj.install_path = '${SYSCONFDIR}/ardour3'
682
683 def i18n(bld):
684     bld.recurse (i18n_children)
685
686 def i18n_pot(bld):
687     bld.recurse (i18n_children)
688
689 def i18n_po(bld):
690     bld.recurse (i18n_children)
691
692 def i18n_mo(bld):
693     bld.recurse (i18n_children)