mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
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:
parent
60e42a4fc5
commit
3e7a7df183
2 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ tranzport.Merge ([
|
|||
libraries['xml'],
|
||||
libraries['glib2'],
|
||||
libraries['glibmm2'],
|
||||
libraries['boost'],
|
||||
libraries['usb'],
|
||||
libraries['sndfile']
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue