mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
Add LV2 header include compatibility (1/2)
For whatever reason LV2 changes #include header locations in a micro version release and disables backwards compatibly by default.
This commit is contained in:
parent
b9e5621e03
commit
bf4decbfe7
12 changed files with 113 additions and 33 deletions
|
|
@ -24,10 +24,17 @@
|
|||
#include <time.h>
|
||||
|
||||
/* LV2 */
|
||||
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
|
||||
#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
|
||||
#include "lv2/lv2plug.in/ns/ext/urid/urid.h"
|
||||
#include "lv2/lv2plug.in/ns/ext/midi/midi.h"
|
||||
#ifdef HAVE_LV2_1_18_6
|
||||
#include <lv2/lv2core/lv2.h>
|
||||
#include <lv2/atom/atom.h>
|
||||
#include <lv2/urid/urid.h>
|
||||
#include <lv2/midi/midi.h>
|
||||
#else
|
||||
#include <lv2/lv2plug.in/ns/lv2core/lv2.h>
|
||||
#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
|
||||
#include <lv2/lv2plug.in/ns/ext/urid/urid.h>
|
||||
#include <lv2/lv2plug.in/ns/ext/midi/midi.h>
|
||||
#endif
|
||||
|
||||
#define RSY_URI "https://community.ardour.org/node/7596"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue