fix startup errors with 2.x related to boost linkage on some platforms

Note: this should not be required because we do not actually link with ANY boost libraries, so the
occurence of this bug in ardour at run time indicates that the wrong version of boost was used and/or
incorrect flags for using boost are in use.

Fix from  David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
Paul Davis 2013-10-04 17:51:03 -04:00
parent 60e42a4fc5
commit 3e7a7df183
2 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,8 @@ genericmidi.Merge ([
libraries['usb'],
libraries['xml'],
libraries['glib2'],
libraries['glibmm2']
libraries['glibmm2'],
libraries['boost']
])
libardour_genericmidi = genericmidi.SharedLibrary('ardour_genericmidi', genericmidi_files)

View File

@ -63,6 +63,7 @@ tranzport.Merge ([
libraries['xml'],
libraries['glib2'],
libraries['glibmm2'],
libraries['boost'],
libraries['usb'],
libraries['sndfile']
])