diff --git a/Makefile b/Makefile index a1731b833..133488762 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/source/Makefile.mk b/source/Makefile.mk index 00782e90f..f801cbe4f 100644 --- a/source/Makefile.mk +++ b/source/Makefile.mk @@ -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) diff --git a/source/bridges/Makefile b/source/bridges/Makefile index 7a5956dd2..77fd9e3d5 100644 --- a/source/bridges/Makefile +++ b/source/bridges/Makefile @@ -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 diff --git a/source/plugin/Makefile b/source/plugin/Makefile index 9135e162e..c2015db1e 100644 --- a/source/plugin/Makefile +++ b/source/plugin/Makefile @@ -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