pkgsrc/audio/mp3blaster/options.mk
nia 2844b8b985 mp3blaster: Remove esound support; use sdl on all non-OSS platforms.
Remove OSS option too because it does absolutely nothing, OSS support
is autodetected if the OS supports it.

Bump PKGREVISION because this changes default options on platforms that
don't support OSS.
2020-01-20 21:31:02 +00:00

16 lines
371 B
Makefile

# $NetBSD: options.mk,v 1.3 2020/01/20 21:31:02 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mp3blaster
PKG_SUPPORTED_OPTIONS= sdl
.include "../../mk/oss.buildlink3.mk"
.if ${OSS_TYPE} == "none"
PKG_SUGGESTED_OPTIONS= sdl
.endif
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msdl)
CONFIGURE_ARGS+= --with-sdl=yes
.include "../../devel/SDL/buildlink3.mk"
.endif