diff options
author | rillig <rillig> | 2006-05-31 09:12:18 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-05-31 09:12:18 +0000 |
commit | 367c5a7f6865f2980b0022df0a44f1f839c93d96 (patch) | |
tree | 30a0c11ff60b889ca46673d3ad77388fb02a7f34 /audio/bmp | |
parent | b21936f080f58cc90440921bb6ef11a9332d22b6 (diff) | |
download | pkgsrc-367c5a7f6865f2980b0022df0a44f1f839c93d96.tar.gz |
Fixed pkglint warnings in audio/bmp-esound by not using the := operator.
Diffstat (limited to 'audio/bmp')
-rw-r--r-- | audio/bmp/Makefile.common | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/bmp/Makefile.common b/audio/bmp/Makefile.common index 73a666dd064..e70bb429967 100644 --- a/audio/bmp/Makefile.common +++ b/audio/bmp/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.19 2006/03/09 21:04:39 jlam Exp $ +# $NetBSD: Makefile.common,v 1.20 2006/05/31 09:12:18 rillig Exp $ # DISTNAME= bmp-0.9.7 @@ -22,8 +22,14 @@ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= pkg-config +BMP_USE_ESD?= no + CONFIGURE_ARGS+= --disable-alsa +.if !empty(BMP_USE_ESD:M[Yy][Ee][Ss]) +CONFIGURE_ARGS+= --enable-esd +.else CONFIGURE_ARGS+= --disable-esd +.endif CONFIGURE_ARGS+= --disable-opengl .if defined(BMP_ENABLE_ENCODERS) && !empty(BMP_ENABLE_ENCODERS:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-mp3 |