pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/ossinfo
Module Name: pkgsrc
Committed By: nia
Date: Thu May 13 09:19:32 UTC 2021
Modified Files:
pkgsrc/audio/ossinfo: Makefile.common
Log Message:
ossinfo: skip if no OSS is found
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/ossinfo/Makefile.common
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/ossinfo/Makefile.common
diff -u pkgsrc/audio/ossinfo/Makefile.common:1.2 pkgsrc/audio/ossinfo/Makefile.common:1.3
--- pkgsrc/audio/ossinfo/Makefile.common:1.2 Sun May 9 09:12:08 2021
+++ pkgsrc/audio/ossinfo/Makefile.common Thu May 13 09:19:32 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.2 2021/05/09 09:12:08 nia Exp $
+# $NetBSD: Makefile.common,v 1.3 2021/05/13 09:19:32 nia Exp $
# Common Makefile logic for commands included with the OSSv4 distribution.
# used by audio/ossinfo/Makefile
@@ -26,8 +26,9 @@ ONLY_FOR_PLATFORM+= SunOS-*-*
LDFLAGS+= ${LIBOSSAUDIO}
-.if ${OPSYS} == "NetBSD" && \
- (!empty(OS_VERSION:M[5-9].*) && empty(OS_VERSION:M9.99.*))
+.if ${OSS_TYPE} == "none" || \
+ (${OPSYS} == "NetBSD" && \
+ (!empty(OS_VERSION:M[5-9].*) && empty(OS_VERSION:M9.99.*)))
PKG_SKIP_REASON+= "Requires OSSv4 support"
.endif
Home |
Main Index |
Thread Index |
Old Index