mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Add LV2 header include compatibility (1/2)
This commit is contained in:
parent
bf4decbfe7
commit
0b48d421d5
2 changed files with 10 additions and 2 deletions
|
|
@ -36,7 +36,11 @@
|
|||
|
||||
#include "gtkmm2ext/utils.h"
|
||||
|
||||
#include "lv2/lv2plug.in/ns/extensions/ui/ui.h"
|
||||
#ifdef HAVE_LV2_1_18_6
|
||||
#include <lv2/ui/ui.h>
|
||||
#else
|
||||
#include <lv2/lv2plug.in/ns/extensions/ui/ui.h>
|
||||
#endif
|
||||
|
||||
#include <lilv/lilv.h>
|
||||
#include <suil/suil.h>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,11 @@
|
|||
|
||||
#include "lv2_external_ui.h"
|
||||
|
||||
#include "lv2/lv2plug.in/ns/extensions/ui/ui.h"
|
||||
#ifdef HAVE_LV2_1_18_6
|
||||
#include <lv2/ui/ui.h>
|
||||
#else
|
||||
#include <lv2/lv2plug.in/ns/extensions/ui/ui.h>
|
||||
#endif
|
||||
|
||||
namespace ARDOUR {
|
||||
class LV2Plugin;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue