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