Browse Source

FIx typo

tags/v0.9.0
falkTX 12 years ago
parent
commit
9266ab67ef
3 changed files with 10 additions and 10 deletions
  1. +8
    -8
      c++/Makefile.mk
  2. +1
    -1
      c++/carla-discovery/Makefile
  3. +1
    -1
      c++/carla-plugin/Makefile

+ 8
- 8
c++/Makefile.mk View File

@@ -49,21 +49,21 @@ CARLA_RTAUDIO_SUPPORT = true

# --------------------------------------------------------------

HAVE_JACK = $(shell pkg-config --exists jack && echo true)
HAVE_JACKSESSION = $(shell pkg-config --atleast-version=0.121.0 jack && echo true)
HAVE_JACK = $(shell pkg-config --exists jack && echo true)
HAVE_JACKSESSION = $(shell pkg-config --atleast-version=0.121.0 jack && echo true)

ifeq ($(CARLA_PLUGIN_SUPPORT),true)
HAVE_SUIL = $(shell pkg-config --exists suil-0 && echo true)
HAVE_SUIL = $(shell pkg-config --exists suil-0 && echo true)
endif

ifeq ($(CARLA_SAMPLERS_SUPPORT),true)
HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
HAVE_LINUSAMPLER = $(shell pkg-config --exists linuxsampler && echo true)
HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
HAVE_LINUXSAMPLER = $(shell pkg-config --exists linuxsampler && echo true)
endif

ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
endif

HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3 mxml && echo true)
HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3 mxml && echo true)

+ 1
- 1
c++/carla-discovery/Makefile View File

@@ -22,7 +22,7 @@ BUILD_CXX_FLAGS += $(shell pkg-config --cflags fluidsynth) -DWANT_FLUIDSYNTH
LINK_FLAGS += $(shell pkg-config --libs fluidsynth)
endif

ifeq ($(HAVE_LINUSAMPLER),true)
ifeq ($(HAVE_LINUXSAMPLER),true)
BUILD_CXX_FLAGS += $(shell pkg-config --cflags linuxsampler) -DWANT_LINUXSAMPLER
LINK_FLAGS += $(shell pkg-config --libs linuxsampler)
endif


+ 1
- 1
c++/carla-plugin/Makefile View File

@@ -28,7 +28,7 @@ ifeq ($(HAVE_FLUIDSYNTH),true)
BUILD_CXX_FLAGS += $(shell pkg-config --cflags fluidsynth) -DWANT_FLUIDSYNTH
endif

ifeq ($(HAVE_LINUSAMPLER),true)
ifeq ($(HAVE_LINUXSAMPLER),true)
BUILD_CXX_FLAGS += $(shell pkg-config --cflags linuxsampler) -DWANT_LINUXSAMPLER
endif



Loading…
Cancel
Save