Fri Dec 19 11:41:25 2008 UTC ()
Make it possible to turn off "pulseaudio" support.


(tron)
diff -r1.3 -r1.4 pkgsrc/devel/SDL/options.mk

cvs diff -r1.3 -r1.4 pkgsrc/devel/SDL/options.mk (expand / switch to unified diff)

--- pkgsrc/devel/SDL/options.mk 2008/12/18 16:53:01 1.3
+++ pkgsrc/devel/SDL/options.mk 2008/12/19 11:41:25 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.3 2008/12/18 16:53:01 jmcneill Exp $ 1# $NetBSD: options.mk,v 1.4 2008/12/19 11:41:25 tron Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.SDL 3PKG_OPTIONS_VAR= PKG_OPTIONS.SDL
4PKG_SUPPORTED_OPTIONS= aalib arts esound nas pulseaudio 4PKG_SUPPORTED_OPTIONS= aalib arts esound nas pulseaudio
5PKG_SUGGESTED_OPTIONS= aalib arts esound nas pulseaudio 5PKG_SUGGESTED_OPTIONS= aalib arts esound nas pulseaudio
6 6
7.include "../../mk/bsd.options.mk" 7.include "../../mk/bsd.options.mk"
8 8
9.if !empty(PKG_OPTIONS:Maalib) 9.if !empty(PKG_OPTIONS:Maalib)
10CONFIGURE_ARGS+= --enable-video-aalib 10CONFIGURE_ARGS+= --enable-video-aalib
11.include "../../graphics/aalib/buildlink3.mk" 11.include "../../graphics/aalib/buildlink3.mk"
12.endif 12.endif
13 13
14.if !empty(PKG_OPTIONS:Marts) 14.if !empty(PKG_OPTIONS:Marts)
@@ -23,18 +23,18 @@ CONFIGURE_ARGS+= --enable-esd @@ -23,18 +23,18 @@ CONFIGURE_ARGS+= --enable-esd
23.include "../../audio/esound/buildlink3.mk" 23.include "../../audio/esound/buildlink3.mk"
24.else 24.else
25CONFIGURE_ARGS+= --disable-esd 25CONFIGURE_ARGS+= --disable-esd
26.endif 26.endif
27 27
28.if !empty(PKG_OPTIONS:Mnas) 28.if !empty(PKG_OPTIONS:Mnas)
29CONFIGURE_ARGS+= --enable-nas 29CONFIGURE_ARGS+= --enable-nas
30.include "../../audio/nas/buildlink3.mk" 30.include "../../audio/nas/buildlink3.mk"
31.else 31.else
32CONFIGURE_ARGS+= --disable-nas 32CONFIGURE_ARGS+= --disable-nas
33.endif 33.endif
34 34
35.if !empty(PKG_OPTIONS:Mpulseaudio) 35.if !empty(PKG_OPTIONS:Mpulseaudio)
36# for some reason --enable-pulseaudio disables the 36 for some reason --enable-pulseaudio disables the
37# configure check 37 configure check
38#CONFIGURE_ARGS+= --enable-pulseaudio 38CONFIGURE_ARGS+= --enable-pulseaudio
39.include "../../audio/pulseaudio/buildlink3.mk" 39.include "../../audio/pulseaudio/buildlink3.mk"
40.endif 40.endif