* Several fixes incl. multi-core MS-Windows threading problem. * New MS-Windows native audio driver. * New Grandstream ringtone file format. * New support in libSoX for memory based file IO. * Now able to set MP3 compression parameters.
16 lines
435 B
Makefile
16 lines
435 B
Makefile
# $NetBSD: options.mk,v 1.3 2010/07/23 07:55:12 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.sox
|
|
PKG_SUPPORTED_OPTIONS= lame oss
|
|
# lame has LICENSE= issues and thus should not be SUGGESTED.
|
|
PKG_SUGGESTED_OPTIONS=
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mlame)
|
|
# This is an option due to LICENSE= issues.
|
|
.include "../../audio/lame/buildlink3.mk"
|
|
.endif
|
|
|
|
.if empty(PKG_OPTIONS:Moss)
|
|
CONFIGURE_ARGS+= --without-oss
|
|
.endif
|