diff options
author | tv <tv@pkgsrc.org> | 2005-10-31 16:43:05 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-31 16:43:05 +0000 |
commit | 51e05a4518ff03eddc7b25a883b08982ac5e3e0a (patch) | |
tree | 8c57c55d42448753a1d0a1981d6afddd8c9ccda4 /audio/wsoundserver | |
parent | 3f353b21aeb91ac63054760ae3ce23255ba44ac9 (diff) | |
download | pkgsrc-51e05a4518ff03eddc7b25a883b08982ac5e3e0a.tar.gz |
Use esound on Interix for audio output.
Diffstat (limited to 'audio/wsoundserver')
-rw-r--r-- | audio/wsoundserver/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/audio/wsoundserver/Makefile b/audio/wsoundserver/Makefile index 822a1d1cda0..1bacaaca20f 100644 --- a/audio/wsoundserver/Makefile +++ b/audio/wsoundserver/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2005/05/24 13:57:50 rillig Exp $ +# $NetBSD: Makefile,v 1.24 2005/10/31 16:43:05 tv Exp $ # DISTNAME= WSoundServer-0.4.0 @@ -38,9 +38,17 @@ post-install: ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/WMSound ${EGDIR} +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "Interix" +. include "../../audio/esound/buildlink3.mk" +CONFIGURE_FLAGS+= --enable-esound +.else +. include "../../mk/ossaudio.buildlink3.mk" +.endif + .include "../../audio/libaudiofile/buildlink3.mk" .include "../../devel/libdockapp/buildlink3.mk" .include "../../devel/libproplist/buildlink3.mk" .include "../../wm/windowmaker/buildlink3.mk" -.include "../../mk/ossaudio.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |