pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/fluidsynth



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat May  3 17:05:17 UTC 2025

Modified Files:
        pkgsrc/audio/fluidsynth: options.mk

Log Message:
fluidsynth: Handle sdl3 option.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/audio/fluidsynth/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/fluidsynth/options.mk
diff -u pkgsrc/audio/fluidsynth/options.mk:1.7 pkgsrc/audio/fluidsynth/options.mk:1.8
--- pkgsrc/audio/fluidsynth/options.mk:1.7      Sun Aug 25 06:18:23 2024
+++ pkgsrc/audio/fluidsynth/options.mk  Sat May  3 17:05:17 2025
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.7 2024/08/25 06:18:23 wiz Exp $
+# $NetBSD: options.mk,v 1.8 2025/05/03 17:05:17 nia Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.fluidsynth
 
 # Audio backends
-PKG_SUPPORTED_OPTIONS=         alsa jack portaudio pulseaudio sdl2
+PKG_SUPPORTED_OPTIONS=         alsa jack portaudio pulseaudio sdl2 sdl3
 PKG_SUGGESTED_OPTIONS.Linux=   alsa
 # Misc
 PKG_SUPPORTED_OPTIONS+=                dbus ladspa
@@ -64,6 +64,13 @@ CMAKE_CONFIGURE_ARGS+=       -Denable-sdl2=ON
 CMAKE_CONFIGURE_ARGS+= -Denable-sdl2=OFF
 .endif
 
+.if !empty(PKG_OPTIONS:Msdl3)
+CMAKE_CONFIGURE_ARGS+= -Denable-sdl3=ON
+.include "../../devel/SDL3/buildlink3.mk"
+.else
+CMAKE_CONFIGURE_ARGS+= -Denable-sdl3=OFF
+.endif
+
 .if !empty(PKG_OPTIONS:Mladspa)
 CMAKE_CONFIGURE_ARGS+= -Denable-ladspa=ON
 .include "../../audio/ladspa/buildlink3.mk"



Home | Main Index | Thread Index | Old Index