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