Browse Source

Fix build

tags/1.9.4
falkTX 11 years ago
parent
commit
a4fc3b7ba7
3 changed files with 3 additions and 4 deletions
  1. +0
    -1
      source/backend/plugin/FluidSynthPlugin.cpp
  2. +2
    -2
      source/bridges/CarlaBridgeUI-LV2.cpp
  3. +1
    -1
      source/bridges/Makefile

+ 0
- 1
source/backend/plugin/FluidSynthPlugin.cpp View File

@@ -962,7 +962,6 @@ public:
{
if (processSingle(outBuffer, time - timeOffset, timeOffset))
{
startTime = 0;
timeOffset = time;

if (kData->midiprog.current >= 0 && kData->midiprog.count > 0 && kData->ctrlChannel >= 0 && kData->ctrlChannel < 16)


+ 2
- 2
source/bridges/CarlaBridgeUI-LV2.cpp View File

@@ -28,7 +28,7 @@ extern "C" {
#include <vector>
#include <QtCore/QDir>

Lv2WorldClass lv2World;
Lv2WorldClass gLv2World;

CARLA_BRIDGE_START_NAMESPACE

@@ -338,7 +338,7 @@ public:
// -----------------------------------------------------------------
// get plugin from lv2_rdf (lilv)

lv2World.init();
gLv2World.init();
rdf_descriptor = lv2_rdf_new(pluginURI);

if (! rdf_descriptor)


+ 1
- 1
source/bridges/Makefile View File

@@ -36,7 +36,7 @@ BUILD_PLUGIN_FLAGS += -I../backend/engine -I../backend/plugin -I../libs
BUILD_PLUGIN_FLAGS += $(QT_UI_FLAGS) $(shell pkg-config --cflags QtXml)

LINK_PLUGIN_FLAGS = $(LINK_FLAGS)
LINK_PLUGIN_FLAGS += $(QT_UI_FLAGS) $(shell pkg-config --libs QtXml) -lpthread
LINK_PLUGIN_FLAGS += $(QT_UI_LIBS) $(shell pkg-config --libs QtXml) -lpthread

# --------------------------------------------------------------
# Plugin bridges (POSIX)


Loading…
Cancel
Save