From 0e0a27276fff117c9ca72d01ea6581c48b70cad5 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 7 Oct 2018 10:26:09 +0200 Subject: [PATCH] Don't build sf2/3 support if fluidsynth is > 1.9.9 --- source/Makefile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Makefile.mk b/source/Makefile.mk index 67e5a0267..f87b62fac 100644 --- a/source/Makefile.mk +++ b/source/Makefile.mk @@ -221,7 +221,7 @@ endif endif HAVE_FFMPEG = $(shell pkg-config --exists libavcodec libavformat libavutil && echo true) -HAVE_FLUIDSYNTH = $(shell pkg-config --atleast-version=1.1.7 fluidsynth && echo true) +HAVE_FLUIDSYNTH = $(shell pkg-config --atleast-version=1.1.7 fluidsynth && pkg-config --max-version=1.9.9 && echo true) HAVE_LIBLO = $(shell pkg-config --exists liblo && echo true) HAVE_QT4 = $(shell pkg-config --exists QtCore QtGui && echo true) HAVE_QT5 = $(shell pkg-config --exists Qt5Core Qt5Gui Qt5Widgets && echo true)