diff options
author | grant <grant@pkgsrc.org> | 2004-01-22 22:52:10 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-01-22 22:52:10 +0000 |
commit | 816f94091ebb0d12abb2b5386e7789c49279516a (patch) | |
tree | 682993072a8987bafa7f61f7ba921f47412c401e /audio/libao/Makefile.common | |
parent | 51c2319b1b004ae6a9e0f93fca607d8cbb9207f5 (diff) | |
download | pkgsrc-816f94091ebb0d12abb2b5386e7789c49279516a.tar.gz |
Solaris has no OSS, tweak the PLIST appropriately.
Diffstat (limited to 'audio/libao/Makefile.common')
-rw-r--r-- | audio/libao/Makefile.common | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/libao/Makefile.common b/audio/libao/Makefile.common index fa5bb8dd22d..5dd89cd1346 100644 --- a/audio/libao/Makefile.common +++ b/audio/libao/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2004/01/22 07:26:08 grant Exp $ +# $NetBSD: Makefile.common,v 1.8 2004/01/22 22:52:10 grant Exp $ DISTNAME= libao-0.8.4 CATEGORIES= audio devel @@ -19,8 +19,13 @@ PKGCONFIG_OVERRIDE+= ${WRKSRC}/ao.pc.in .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "FreeBSD" +PLIST_SUBST+= LIBOSS="" PLIST_SUBST+= LIBSUN="@comment " +.elif ${OPSYS} == "SunOS" +PLIST_SUBST+= LIBOSS="@comment " +PLIST_SUBST+= LIBSUN="" .else +PLIST_SUBST+= LIBOSS="" PLIST_SUBST+= LIBSUN="" .endif |