Make check for new Lilv optional.
[ardour.git] / libs / ardour / 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 subprocess
7
8 # Version of this package (even if built as a child)
9 MAJOR = '3'
10 MINOR = '0'
11 MICRO = '0'
12 LIBARDOUR_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
13
14 # Library version (UNIX style major, minor, micro)
15 # major increment <=> incompatible changes
16 # minor increment <=> compatible changes (additions)
17 # micro increment <=> no interface changes
18 LIBARDOUR_LIB_VERSION = '3.0.0'
19
20 # default state file version for this build
21 CURRENT_SESSION_FILE_VERSION = 3001
22
23 # Variables for 'waf dist'
24 APPNAME = 'libardour3'
25 VERSION = LIBARDOUR_VERSION
26 I18N_PACKAGE = 'ardour3'
27
28 # Mandatory variables
29 top = '.'
30 out = 'build'
31
32 path_prefix = 'libs/ardour/'
33
34 libardour_sources = [
35         'amp.cc',
36         'analyser.cc',
37         'audio_buffer.cc',
38         'audio_diskstream.cc',
39         'audio_library.cc',
40         'audio_playlist.cc',
41         'audio_playlist_importer.cc',
42         'audio_playlist_source.cc',
43         'audio_port.cc',
44         'audio_region_importer.cc',
45         'audio_track.cc',
46         'audio_track_importer.cc',
47         'audioanalyser.cc',
48         'audioengine.cc',
49         'audiofile_tagger.cc',
50         'audiofilesource.cc',
51         'audioregion.cc',
52         'audiosource.cc',
53         'auditioner.cc',
54         'automatable.cc',
55         'automation.cc',
56         'automation_control.cc',
57         'automation_list.cc',
58         'automation_watch.cc',
59         'beats_frames_converter.cc',
60         'broadcast_info.cc',
61         'buffer.cc',
62         'buffer_manager.cc',
63         'buffer_set.cc',
64         'bundle.cc',
65         'butler.cc',
66         'callback.cc',
67         'capturing_processor.cc',
68         'chan_count.cc',
69         'chan_mapping.cc',
70         'configuration.cc',
71         'config_text.cc',
72         'control_protocol_manager.cc',
73         'control_protocol_search_path.cc',
74         'cycle_timer.cc',
75         'data_type.cc',
76         'default_click.cc',
77         'debug.cc',
78         'delivery.cc',
79         'directory_names.cc',
80         'diskstream.cc',
81         'element_import_handler.cc',
82         'element_importer.cc',
83         'enums.cc',
84         'event_type_map.cc',
85         'export_channel.cc',
86         'export_channel_configuration.cc',
87         'export_failed.cc',
88         'export_filename.cc',
89         'export_format_base.cc',
90         'export_format_manager.cc',
91         'export_format_specification.cc',
92         'export_formats.cc',
93         'export_formats_search_path.cc',
94         'export_graph_builder.cc',
95         'export_handler.cc',
96         'export_preset.cc',
97         'export_profile_manager.cc',
98         'export_status.cc',
99         'export_timespan.cc',
100         'file_source.cc',
101         'filename_extensions.cc',
102         'filesystem_paths.cc',
103         'filter.cc',
104         'find_session.cc',
105         'globals.cc',
106         'graph.cc',
107         'graphnode.cc',
108         'import.cc',
109         'instrument_info.cc',
110         'internal_return.cc',
111         'internal_send.cc',
112         'interpolation.cc',
113         'io.cc',
114         'io_processor.cc',
115         'jack_slave.cc',
116         'ladspa_plugin.cc',
117         'location.cc',
118         'location_importer.cc',
119         'ltc_slave.cc',
120         'meter.cc',
121         'midi_automation_list_binder.cc',
122         'midi_buffer.cc',
123         'midi_clock_slave.cc',
124         'midi_diskstream.cc',
125         'midi_model.cc',
126         'midi_patch_manager.cc',
127         'midi_patch_search_path.cc',
128         'midi_playlist.cc',
129         'midi_playlist_source.cc',
130         'midi_port.cc',
131         'midi_region.cc',
132         'midi_ring_buffer.cc',
133         'midi_source.cc',
134         'midi_state_tracker.cc',
135         'midi_stretch.cc',
136         'midi_track.cc',
137         'midi_ui.cc',
138         'mix.cc',
139         'monitor_processor.cc',
140         'mtc_slave.cc',
141         'mtdm.cc',
142         'mute_master.cc',
143         'onset_detector.cc',
144         'operations.cc',
145         'pan_controllable.cc',
146         'pannable.cc',
147         'panner.cc',
148         'panner_manager.cc',
149         'panner_search_path.cc',
150         'panner_shell.cc',
151         'pcm_utils.cc',
152         'pi_controller.cc',
153         'playlist.cc',
154         'playlist_factory.cc',
155         'playlist_source.cc',
156         'plugin.cc',
157         'plugin_insert.cc',
158         'plugin_manager.cc',
159         'port.cc',
160         'port_insert.cc',
161         'port_set.cc',
162         'process_thread.cc',
163         'processor.cc',
164         'progress.cc',
165         'quantize.cc',
166         'rc_configuration.cc',
167         'recent_sessions.cc',
168         'region_factory.cc',
169         'resampled_source.cc',
170         'region.cc',
171         'return.cc',
172         'reverse.cc',
173         'route.cc',
174         'route_graph.cc',
175         'route_group.cc',
176         'route_group_member.cc',
177         'rb_effect.cc',
178         'send.cc',
179         'session.cc',
180         'session_butler.cc',
181         'session_click.cc',
182         'session_command.cc',
183         'session_configuration.cc',
184         'session_directory.cc',
185         'session_events.cc',
186         'session_export.cc',
187         'session_handle.cc',
188         'session_ltc.cc',
189         'session_metadata.cc',
190         'session_midi.cc',
191         'session_object.cc',
192         'session_playlists.cc',
193         'session_process.cc',
194         'session_rtevents.cc',
195         'session_state.cc',
196         'session_state_utils.cc',
197         'session_time.cc',
198         'session_transport.cc',
199         'slave.cc',
200         'smf_source.cc',
201         'sndfile_helpers.cc',
202         'sndfileimportable.cc',
203         'sndfilesource.cc',
204         'source.cc',
205         'source_factory.cc',
206         'speakers.cc',
207         'strip_silence.cc',
208         'svn_revision.cc',
209         'tape_file_matcher.cc',
210         'template_utils.cc',
211         'tempo.cc',
212         'tempo_map_importer.cc',
213         'thread_buffers.cc',
214         'ticker.cc',
215         'track.cc',
216         'transient_detector.cc',
217         'unknown_processor.cc',
218         'user_bundle.cc',
219         'utils.cc',
220         'version.cc',
221         'worker.cc'
222 ]
223
224 def flac_supported():
225     cmd = subprocess.Popen ("sndfile-info testfile.flac",
226                             stdout = subprocess.PIPE,
227                             stderr = subprocess.STDOUT, shell = True)
228     out = cmd.communicate()[0].decode('utf-8');
229     return re.search ('unknown format', out) == None
230
231 def ogg_supported():
232     cmd = subprocess.Popen ("sndfile-info testfile.ogg",
233                             stdout = subprocess.PIPE,
234                             stderr = subprocess.STDOUT, shell = True)
235     out = cmd.communicate()[0].decode('utf-8');
236     return re.search ('unknown format', out) == None
237
238 def options(opt):
239     autowaf.set_options(opt)
240
241 def configure(conf):
242     conf.load('compiler_cxx')
243     conf.load('gas')
244     autowaf.build_version_files(
245         path_prefix + 'ardour/version.h',
246         path_prefix + 'version.cc',
247         'libardour3', MAJOR, MINOR, MICRO)
248     autowaf.configure(conf)
249     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
250                       atleast_version='0.3.2')
251     autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
252                       atleast_version='0.118.2')
253     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
254     autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
255                       atleast_version='0.4.0')
256     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
257                       atleast_version='0.1.0')
258     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
259                       atleast_version='2.0')
260     if Options.options.lv2:
261         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
262                           atleast_version='1.0.0', mandatory=True)
263         autowaf.check_pkg(conf, 'lv2', uselib_store='NEW_LV2',
264                           atleast_version='1.0.15', mandatory=False)
265         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
266                           atleast_version='0.14.0', mandatory=True)
267         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
268                           atleast_version='0.8.0', mandatory=True)
269         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
270                           atleast_version='0.2.0', mandatory=True)
271         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
272                           atleast_version='0.14.0', mandatory=True)
273         autowaf.check_pkg(conf, 'lilv-0', uselib_store='NEW_LILV',
274                           atleast_version='0.15.0', mandatory=False)
275         autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
276                           atleast_version='0.6.0', mandatory=False)
277         conf.define ('LV2_SUPPORT', 1)
278
279 #    autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH',
280 #                      mandatory=False)
281     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT',
282                       atleast_version='1.12.0', mandatory=False)
283     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
284     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
285                       atleast_version='1.2.1')
286     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
287                       atleast_version='7.0.0')
288
289     # we don't try to detect this, since its part of our source tree
290
291     conf.define('HAVE_RUBBERBAND', 1) # controls whether we think we have it
292     conf.define('USE_RUBBERBAND', 1)  # controls whether we actually use it
293
294     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
295
296     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
297     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
298
299     conf.check(header_name='jack/session.h', uselib = [ 'JACK' ],
300                define_name='HAVE_JACK_SESSION')
301
302     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
303
304     conf.check_cc(fragment = '''
305 #include <jack/jack.h>
306 void callback(jack_status_t code, const char* reason, void* arg) { return; }
307 int main(int argc, char **argv) {
308     jack_client_t* c;
309     jack_on_info_shutdown(c, callback, (void*) 0);
310     return 0;
311 }''',
312                   uselib= [ 'JACK' ],
313                   msg = 'Checking for jack_on_info_shutdown',
314                   define_name = 'HAVE_JACK_ON_INFO_SHUTDOWN',
315                   okmsg = 'present')
316
317     missing_jack_message = 'missing - a version of JACK that supports jack_port_set_latency_range() is required to compile Ardour3.'
318
319     conf.check_cc(fragment = '''
320 #include <jack/jack.h>
321 int main(int argc, char **argv) {
322     jack_port_t* p;
323     jack_latency_range_t r;
324     jack_port_set_latency_range(p, JackCaptureLatency, &r);
325     return 0;
326 }''',
327                   uselib = [ 'JACK' ],
328                   msg = 'Checking for new JACK latency API',
329                   okmsg = 'present',
330                   mandatory = True,
331                   errmsg = missing_jack_message)
332
333     conf.check_cc(fragment = '''
334 #include <jack/jack.h>
335 int main(int argc, char **argv) {
336    jack_port_type_get_buffer_size((jack_client_t*)0, "");
337    return 0;
338 }''',
339                   uselib = [ 'JACK' ],
340                   msg = 'Checking for new jack_port_type_get_buffer_size',
341                   okmsg = 'present',
342                   mandatory = True,
343                   errmsg = missing_jack_message)
344
345     conf.check_cc(fragment = '''
346 #include <jack/transport.h>
347 int main(int argc, char** argv) {
348   jack_position_t pos;
349   pos.valid & JackVideoFrameOffset;
350   return 0;
351 }''',
352                   uselib= [ 'JACK' ],
353                   msg = 'Checking for JackVideoFrameOffset',
354                   define_name = 'HAVE_JACK_VIDEO_SUPPORT',
355                   mandatory = False,
356                   okmsg = 'present')
357
358     if flac_supported():
359         conf.define ('HAVE_FLAC', 1)
360     if ogg_supported():
361         conf.define ('HAVE_OGG', 1)
362
363     conf.write_config_header('libardour-config.h', remove=False)
364
365     # Boost headers
366     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
367     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
368     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
369     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
370
371
372 def build(bld):
373     # Library
374     obj              = bld(features = 'c cxx cshlib cxxshlib')
375     obj.source       = libardour_sources
376     obj.export_includes = ['.']
377     obj.includes     = ['.', '../surfaces/control_protocol', '..']
378     obj.name         = 'libardour'
379     obj.target       = 'ardour'
380     obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID',
381                         'JACK','SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS',
382                         'OSX','BOOST','CURL','DL']
383     obj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
384                         'libvampplugin','libtaglib','librubberband',
385                         'libaudiographer','libltc']
386     obj.vnum         = LIBARDOUR_LIB_VERSION
387     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
388     obj.defines      = [
389         'PACKAGE="' + I18N_PACKAGE + '"',
390         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
391         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
392         'LOCALEDIR="' + os.path.join(os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
393         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"',
394         'EVORAL_MIDI_XML=1' 
395         ]
396
397     #obj.source += ' st_stretch.cc st_pitch.cc '
398     #obj.uselib += ' SOUNDTOUCH '
399     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
400
401     if bld.is_defined('HAVE_LILV') :
402         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc'] 
403         obj.uselib += ['LILV']
404         if bld.is_defined('HAVE_SUIL'):
405             obj.uselib += ['SUIL']
406
407     if bld.is_defined('WINDOWS_VST_SUPPORT'):
408         obj.source += [ 'windows_vst_plugin.cc']
409         obj.includes += [ '../fst' ]
410         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
411
412     if bld.is_defined('LXVST_SUPPORT'):
413         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc', 'linux_vst_info_file.cc' ]
414         obj.defines += [ 'LXVST_SUPPORT' ]
415
416     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
417         obj.source += [ 'session_vst.cc', 'vst_plugin.cc' ]
418
419     if bld.is_defined('HAVE_COREAUDIO'):
420         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
421         obj.use    += ['libappleutility']
422
423     if bld.is_defined('AUDIOUNIT_SUPPORT'):
424         obj.source += [ 'audio_unit.cc' ]
425
426     if Options.options.fpu_optimization:
427         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
428             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s' ]
429         elif bld.env['build_target'] == 'x86_64':
430             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
431
432     # i18n
433     if bld.is_defined('ENABLE_NLS'):
434         mo_files = bld.path.ant_glob('po/*.mo')
435         for mo in mo_files:
436             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
437             bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
438                                         lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
439                            mo)
440
441     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
442         # Unit tests
443         testobj              = bld(features = 'cxx cxxprogram')
444         testobj.source       = '''
445                 test/dummy_lxvst.cc
446                 test/test_util.cc
447                 test/test_needing_session.cc
448                 test/audio_region_test.cc
449                 test/test_globals.cc
450                 test/audio_region_read_test.cc
451                 test/automation_list_property_test.cc
452                 test/bbt_test.cc
453                 test/tempo_test.cc
454                 test/interpolation_test.cc
455                 test/midi_clock_slave_test.cc
456                 test/resampled_source_test.cc
457                 test/framewalk_to_beats_test.cc
458                 test/framepos_plus_beats_test.cc
459                 test/framepos_minus_beats_test.cc
460                 test/playlist_layering_test.cc
461                 test/playlist_read_test.cc
462                 test/playlist_equivalent_regions_test.cc
463                 test/control_surfaces_test.cc
464                 test/combine_regions_test.cc
465                 test/region_naming_test.cc
466                 test/load_sessions_test.cc
467                 test/mtdm_test.cc
468                 test/testrunner.cc
469         '''.split()
470
471 # Tests that don't work
472 #                test/mantis_3356_test.cc
473
474         testobj.includes     = obj.includes + ['test', '../pbd']
475         testobj.uselib       = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
476                                 'SAMPLERATE','XML','LRDF','COREAUDIO']
477         testobj.use          = ['libpbd','libmidipp','libardour']
478         testobj.name         = 'libardour-tests'
479         testobj.target       = 'run-tests'
480         testobj.install_path = ''
481         testobj.defines      = [
482             'PACKAGE="libardour3test"',
483             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
484             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
485             'LOCALEDIR="' + os.path.join(
486                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
487             'VAMP_DIR="' + os.path.join(
488                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
489             ]
490         if bld.env['FPU_OPTIMIZATION']:
491             testobj.source += [ 'sse_functions_xmm.cc' ]
492             if (bld.env['build_target'] == 'i386'
493                 or bld.env['build_target'] == 'i686'):
494                 testobj.source += [ 'sse_functions.s' ]
495             elif bld.env['build_target'] == 'x86_64':
496                 testobj.source += [ 'sse_functions_64bit.s' ]
497
498         # Tester to just load a session
499         session_load_tester = bld(features = 'cxx cxxprogram')
500         session_load_tester.source = '''
501                     test/test_util.cc
502                     test/load_session.cc
503                     test/dummy_lxvst.cc
504             '''.split()
505
506         session_load_tester.includes  = obj.includes
507         session_load_tester.includes.append ('test')
508         session_load_tester.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
509                              'SAMPLERATE','XML','LRDF','COREAUDIO']
510         session_load_tester.use       = ['libpbd','libmidipp','libardour']
511         session_load_tester.name      = 'libardour-session-load-tester'
512         session_load_tester.target    = 'load-session'
513         session_load_tester.install_path = ''
514         session_load_tester.defines      = [
515             'PACKAGE="libardour3profile"',
516             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
517             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
518             'LOCALEDIR="' + os.path.join(
519                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
520             'VAMP_DIR="' + os.path.join(
521                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
522             ]
523         if bld.env['FPU_OPTIMIZATION']:
524             session_load_tester.source += [ 'sse_functions_xmm.cc' ]
525             if (bld.env['build_target'] == 'i386'
526                 or bld.env['build_target'] == 'i686'):
527                 session_load_tester.source += [ 'sse_functions.s' ]
528             elif bld.env['build_target'] == 'x86_64':
529                 session_load_tester.source += [ 'sse_functions_64bit.s' ]
530
531         # Profiling
532         for p in ['runpc', 'lots_of_regions', 'load_session']:
533             profilingobj = bld(features = 'cxx cxxprogram')
534             profilingobj.source = '''
535                     test/dummy_lxvst.cc
536                     test/test_util.cc
537             '''.split()
538
539             profilingobj.source.append('test/profiling/%s.cc' % p)
540
541             profilingobj.includes  = obj.includes
542             profilingobj.includes.append ('test')
543             profilingobj.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
544                              'SAMPLERATE','XML','LRDF','COREAUDIO']
545             profilingobj.use       = ['libpbd','libmidipp','libardour']
546             profilingobj.name      = 'libardour-profiling'
547             profilingobj.target    = p
548             profilingobj.install_path = ''
549             profilingobj.defines      = [
550                 'PACKAGE="libardour3profile"',
551                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
552                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
553                 'LOCALEDIR="' + os.path.join(
554                     os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
555                 'VAMP_DIR="' + os.path.join(
556                     os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
557                 ]
558             if bld.env['FPU_OPTIMIZATION']:
559                 profilingobj.source += [ 'sse_functions_xmm.cc' ]
560                 if (bld.env['build_target'] == 'i386'
561                     or bld.env['build_target'] == 'i686'):
562                     profilingobj.source += [ 'sse_functions.s' ]
563                 elif bld.env['build_target'] == 'x86_64':
564                     profilingobj.source += [ 'sse_functions_64bit.s' ]
565
566 def shutdown():
567     autowaf.shutdown()
568
569 def i18n(bld):
570     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
571                        'Paul Davis')
572
573 def i18n_pot(bld):
574     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
575                        'Paul Davis')
576
577 def i18n_po(bld):
578     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
579                        'Paul Davis')
580
581 def i18n_mo(bld):
582     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
583                        'Paul Davis')