External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
931B

  1. From 4945915eeb096752e728b783c49b580f1710dff7 Mon Sep 17 00:00:00 2001
  2. From: David Runge <dave@sleepmap.de>
  3. Date: Thu, 21 May 2020 17:24:48 +0200
  4. Subject: [PATCH] Fixing build with lv2 >= 1.18.0
  5. gui/sorcer_ui.cxx:
  6. Replacing all occurrences of _LV2UI_Descriptor with LV2UI_Descriptor as
  7. the former has been replaced by the latter with lv2 1.18.0.
  8. ---
  9. gui/sorcer_ui.cxx | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/gui/sorcer_ui.cxx b/gui/sorcer_ui.cxx
  12. index 60edbe4..3bd25a3 100644
  13. --- a/gui/sorcer_ui.cxx
  14. +++ b/gui/sorcer_ui.cxx
  15. @@ -44,7 +44,7 @@ typedef struct {
  16. LV2UI_Controller controller;
  17. } SorcerGUI;
  18. -static LV2UI_Handle instantiate(const struct _LV2UI_Descriptor * descriptor,
  19. +static LV2UI_Handle instantiate(const struct LV2UI_Descriptor * descriptor,
  20. const char * plugin_uri,
  21. const char * bundle_path,
  22. LV2UI_Write_Function write_function,