summaryrefslogtreecommitdiff
path: root/audio/fluidsynth/files/patch-CMakeLists.txt
diff options
context:
space:
mode:
authorDaniel Engberg <diizzy@FreeBSD.org>2024-09-15 13:09:33 +0200
committerDaniel Engberg <diizzy@FreeBSD.org>2024-09-15 13:09:37 +0200
commitc4d5a141aa97606257a723511ce34aa039f492eb (patch)
tree5ed4c2cb625ad60fbc1d6113e0099829ddef774e /audio/fluidsynth/files/patch-CMakeLists.txt
parentcomms/tio: Update to 3.7 (diff)
audio/fluidsynth: Update to 2.3.6 and drop sndio support
Drop sndio patches as maintaining our "custom fork/set of patches" will cause bitrot further down the road PR: 281184
Diffstat (limited to 'audio/fluidsynth/files/patch-CMakeLists.txt')
-rw-r--r--audio/fluidsynth/files/patch-CMakeLists.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/audio/fluidsynth/files/patch-CMakeLists.txt b/audio/fluidsynth/files/patch-CMakeLists.txt
deleted file mode 100644
index f9c26aca644e..000000000000
--- a/audio/fluidsynth/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
---- CMakeLists.txt.orig 2022-12-28 11:43:59 UTC
-+++ CMakeLists.txt
-@@ -90,6 +90,7 @@ option ( enable-winmidi "compile Windows MIDI support
- option ( enable-sdl2 "compile SDL2 audio support (if it is available)" on )
- option ( enable-pulseaudio "compile PulseAudio support (if it is available)" on )
- option ( enable-pipewire "compile PipeWire support (if it is available)" on )
-+option ( enable-sndio "compile Sndio support (if it is available)" on )
- option ( enable-readline "compile readline lib line editing (if it is available)" on )
- option ( enable-threads "enable multi-threading support (such as parallel voice synthesis)" on )
- option ( enable-openmp "enable OpenMP support (parallelization of soundfont decoding, vectorization of voice mixing, etc.)" on )
-@@ -530,6 +531,11 @@ if ( enable-pulseaudio )
- else ( enable-pulseaudio )
- unset_pkg_config ( PULSE )
- endif ( enable-pulseaudio )
-+
-+unset ( SNDIO_SUPPORT CACHE )
-+if ( enable-sndio )
-+ set ( SNDIO_SUPPORT 1 )
-+endif ( enable-sndio )
-
- unset ( ALSA_SUPPORT CACHE )
- if ( enable-alsa )