mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +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
|
|
@ -28,7 +28,11 @@
|
|||
#include "ardour/lv2_extensions.h"
|
||||
#endif
|
||||
|
||||
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
|
||||
#ifdef HAVE_LV2_1_18_6
|
||||
#include <lv2/lv2core/lv2.h>
|
||||
#else
|
||||
#include <lv2/lv2plug.in/ns/lv2core/lv2.h>
|
||||
#endif
|
||||
|
||||
#define ACOMP_URI "urn:ardour:a-comp"
|
||||
#define ACOMP_STEREO_URI "urn:ardour:a-comp#stereo"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue