From 0ab7278aa30415115b6b2defa4c5fe7f225ee46c Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 4 Feb 2014 07:02:47 +0000 Subject: [PATCH] Misc --- source/backend/engine/CarlaEngineJack.cpp | 12 ++++++------ source/discovery/Makefile | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/source/backend/engine/CarlaEngineJack.cpp b/source/backend/engine/CarlaEngineJack.cpp index a155f8635..cea9569fa 100644 --- a/source/backend/engine/CarlaEngineJack.cpp +++ b/source/backend/engine/CarlaEngineJack.cpp @@ -1315,10 +1315,10 @@ protected: bool portIsAudio = (std::strcmp(jackbridge_port_type(jackPort), JACK_DEFAULT_AUDIO_TYPE) == 0); bool portIsCV = false; - if (jack_uuid_t uuid = jackbridge_port_uuid(jackPort)) + //if (jack_uuid_t uuid = jackbridge_port_uuid(jackPort)) { - char* value = nullptr; - char* type = nullptr; + //char* value = nullptr; + //char* type = nullptr; //if (jackbridge_get_property(uuid, "urn:jack:IsControlVoltage", &value, &type) && value != nullptr && type != nullptr && std::strcmp(type, "text/plain") == 0) // portIsCV = (std::strcmp(value, "YES") == 0); @@ -1792,10 +1792,10 @@ private: bool portIsAudio = (std::strcmp(jackbridge_port_type(jackPort), JACK_DEFAULT_AUDIO_TYPE) == 0); bool portIsCV = false; - if (jack_uuid_t uuid = jackbridge_port_uuid(jackPort)) + //if (jack_uuid_t uuid = jackbridge_port_uuid(jackPort)) { - char* value = nullptr; - char* type = nullptr; + //char* value = nullptr; + //char* type = nullptr; //if (jackbridge_get_property(uuid, "urn:jack:IsControlVoltage", &value, &type) && value != nullptr && type != nullptr && std::strcmp(type, "text/plain") == 0) // portIsCV = (std::strcmp(value, "YES") == 0); diff --git a/source/discovery/Makefile b/source/discovery/Makefile index 5e8243443..20c4810c9 100644 --- a/source/discovery/Makefile +++ b/source/discovery/Makefile @@ -146,6 +146,12 @@ debug: .FORCE: .PHONY: .FORCE +../modules/juce_audio_basics.%.a: .FORCE + $(MAKE) -C ../modules juce_audio_basics_$* + +../modules/juce_core.%.a: .FORCE + $(MAKE) -C ../modules juce_core_$* + ../modules/lilv.%.a: .FORCE $(MAKE) -C ../modules lilv_$*