68a8ce3786
2.0.4: * Removed smpeg support for mp3 music, now that it's replaced by libmpg123 * Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes * Added support for Opus music playback using opusfile library 2.0.3: * Fixed regression where Mix_Init() would return 0 for available music formats
13 lines
371 B
Makefile
13 lines
371 B
Makefile
# $NetBSD: options.mk,v 1.3 2018/11/01 21:12:40 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.SDL2_mixer
|
|
PKG_SUPPORTED_OPTIONS= fluidsynth
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mfluidsynth)
|
|
.include "../../audio/fluidsynth/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-music-midi-fluidsynth=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-music-midi-fluidsynth=no
|
|
.endif
|