Browse Source

Use fftw3f instead of fftw3

tags/1.9.4
falkTX 11 years ago
parent
commit
89804a26e6
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      source/Makefile.mk
  3. +1
    -1
      source/bridges/Makefile
  4. +1
    -1
      source/plugin/Makefile

+ 1
- 1
Makefile View File

@@ -410,5 +410,5 @@ else
@echo "ZynAddSubFX:$(ANS_YES) (without UI) $(mS)NTK missing$(mE)"
endif
else
@echo "ZynAddSubFX:$(ANS_NO) $(mS)fftw-3, mxml or zlib missing$(mE)"
@echo "ZynAddSubFX:$(ANS_NO) $(mS)fftw3f, mxml or zlib missing$(mE)"
endif

+ 1
- 1
source/Makefile.mk View File

@@ -69,7 +69,7 @@ HAVE_QT5 = $(shell pkg-config --exists Qt5Core && echo true)

HAVE_AF_DEPS = $(shell pkg-config --exists sndfile && echo true)
HAVE_MF_DEPS = $(shell pkg-config --exists smf && echo true)
HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3 mxml zlib && echo true)
HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3f mxml zlib && echo true)
HAVE_ZYN_UI_DEPS = $(shell pkg-config --exists ntk ntk_images && echo true)

ifeq ($(CARLA_SAMPLERS_SUPPORT),true)


+ 1
- 1
source/bridges/Makefile View File

@@ -119,7 +119,7 @@ endif

ifeq ($(HAVE_ZYN_DEPS),true)
NATIVE_BUILD_FLAGS += -DWANT_ZYNADDSUBFX
NATIVE_LINK_FLAGS += $(shell pkg-config --libs fftw3 mxml zlib)
NATIVE_LINK_FLAGS += $(shell pkg-config --libs fftw3f mxml zlib)
ifeq ($(HAVE_ZYN_UI_DEPS),true)
NATIVE_LINK_FLAGS += $(shell pkg-config --libs ntk ntk_images)
endif


+ 1
- 1
source/plugin/Makefile View File

@@ -49,7 +49,7 @@ LINK_FLAGS += $(shell pkg-config --libs gl) $(DGL_LIBS)
endif

ifeq ($(HAVE_ZYN_DEPS),true)
LINK_FLAGS += $(shell pkg-config --libs fftw3 mxml zlib)
LINK_FLAGS += $(shell pkg-config --libs fftw3f mxml zlib)
ifeq ($(HAVE_ZYN_UI_DEPS),true)
LINK_FLAGS += $(shell pkg-config --libs ntk ntk_images)
endif


Loading…
Cancel
Save