infamousplugins: fix build with recent lv2
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
@@ -0,0 +1,188 @@
|
||||
From fb0193287091c97262e5bcba7fe6d4d7aa56d9f6 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sat, 19 Jan 2019 01:24:35 +0100
|
||||
Subject: [PATCH] Fix path to lv2.h with recent lv2
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
src/bentdelay/falter.c | 2 +-
|
||||
src/casynth/casynth.h | 2 +-
|
||||
src/cheapdist/cheapdist.c | 2 +-
|
||||
src/cheapoct/cheapoct.c | 2 +-
|
||||
src/duffer/duffing.c | 2 +-
|
||||
src/envfollower/envfollower.c | 2 +-
|
||||
src/ewham/ewham.c | 2 +-
|
||||
src/hip2b/square.c | 2 +-
|
||||
src/lushlife/lushlife.cc | 2 +-
|
||||
src/pms/pms.c | 2 +-
|
||||
src/powercut/powercut.c | 2 +-
|
||||
src/powerup/powerup.c | 2 +-
|
||||
src/stuck/stuck.c | 2 +-
|
||||
13 files changed, 13 insertions(+), 13 deletions(-)
|
||||
|
||||
diff --git a/src/bentdelay/falter.c b/src/bentdelay/falter.c
|
||||
index 6a7ce93..61c0a54 100644
|
||||
--- a/src/bentdelay/falter.c
|
||||
+++ b/src/bentdelay/falter.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//falter.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/casynth/casynth.h b/src/casynth/casynth.h
|
||||
index a514316..a5c0f1a 100644
|
||||
--- a/src/casynth/casynth.h
|
||||
+++ b/src/casynth/casynth.h
|
||||
@@ -1,7 +1,7 @@
|
||||
//Spencer Jackson
|
||||
//casynth.h
|
||||
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/urid/urid.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/midi/midi.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/atom/util.h>
|
||||
diff --git a/src/cheapdist/cheapdist.c b/src/cheapdist/cheapdist.c
|
||||
index 33a008c..6869cc9 100644
|
||||
--- a/src/cheapdist/cheapdist.c
|
||||
+++ b/src/cheapdist/cheapdist.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//cheapdist.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<math.h>
|
||||
diff --git a/src/cheapoct/cheapoct.c b/src/cheapoct/cheapoct.c
|
||||
index 2f1a030..903cb24 100644
|
||||
--- a/src/cheapoct/cheapoct.c
|
||||
+++ b/src/cheapoct/cheapoct.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//cheapoct.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/duffer/duffing.c b/src/duffer/duffing.c
|
||||
index 0ad0b95..89b30fb 100644
|
||||
--- a/src/duffer/duffing.c
|
||||
+++ b/src/duffer/duffing.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//duffer.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/urid/urid.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/atom/util.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
|
||||
diff --git a/src/envfollower/envfollower.c b/src/envfollower/envfollower.c
|
||||
index f984a7e..46125d4 100644
|
||||
--- a/src/envfollower/envfollower.c
|
||||
+++ b/src/envfollower/envfollower.c
|
||||
@@ -6,7 +6,7 @@
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<math.h>
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/urid/urid.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/midi/midi.h>
|
||||
#include<lv2/lv2plug.in/ns/ext/atom/util.h>
|
||||
diff --git a/src/ewham/ewham.c b/src/ewham/ewham.c
|
||||
index c4e648d..2625af3 100644
|
||||
--- a/src/ewham/ewham.c
|
||||
+++ b/src/ewham/ewham.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//ewham.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/hip2b/square.c b/src/hip2b/square.c
|
||||
index b3f065b..03e00c5 100644
|
||||
--- a/src/hip2b/square.c
|
||||
+++ b/src/hip2b/square.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//square.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<math.h>
|
||||
diff --git a/src/lushlife/lushlife.cc b/src/lushlife/lushlife.cc
|
||||
index f198291..1744c1a 100644
|
||||
--- a/src/lushlife/lushlife.cc
|
||||
+++ b/src/lushlife/lushlife.cc
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//lushlife.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/pms/pms.c b/src/pms/pms.c
|
||||
index ee4ed27..1c571d6 100644
|
||||
--- a/src/pms/pms.c
|
||||
+++ b/src/pms/pms.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//pms.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/powercut/powercut.c b/src/powercut/powercut.c
|
||||
index 3809f5c..4798ece 100644
|
||||
--- a/src/powercut/powercut.c
|
||||
+++ b/src/powercut/powercut.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//stuck.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/powerup/powerup.c b/src/powerup/powerup.c
|
||||
index 366dcdb..200753d 100644
|
||||
--- a/src/powerup/powerup.c
|
||||
+++ b/src/powerup/powerup.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//stuck.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
diff --git a/src/stuck/stuck.c b/src/stuck/stuck.c
|
||||
index 808b51b..e5fcefc 100644
|
||||
--- a/src/stuck/stuck.c
|
||||
+++ b/src/stuck/stuck.c
|
||||
@@ -1,6 +1,6 @@
|
||||
//Spencer Jackson
|
||||
//stuck.c
|
||||
-#include<lv2.h>
|
||||
+#include<lv2/lv2.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@@ -15,6 +15,7 @@ inherit cmake pkgconfig gtk-icon-cache
|
||||
|
||||
SRC_URI = " \
|
||||
git://github.com/ssj71/infamousPlugins.git \
|
||||
file://0001-Fix-path-to-lv2.h-with-recent-lv2.patch \
|
||||
"
|
||||
SRCREV = "970a5de32393cc92ab2144d6a8a5e92b302dc9b5"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
Reference in New Issue
Block a user