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