summaryrefslogtreecommitdiff
path: root/audio/jack
diff options
context:
space:
mode:
authorrichard <richard@pkgsrc.org>2014-02-23 10:22:13 +0000
committerrichard <richard@pkgsrc.org>2014-02-23 10:22:13 +0000
commit77e76308ddad6afda2a5b1aa2ff52eb2391181ee (patch)
treeada4bf414b15eb0bfeec712bcbe069faf44aa99d /audio/jack
parent15ae28091c6200000a846a1df5d0fbc039166fd4 (diff)
downloadpkgsrc-77e76308ddad6afda2a5b1aa2ff52eb2391181ee.tar.gz
Fix check for OPSYS on Solaris, which should be 'SunOS'.
(PM: LOWER_OPSYS is 'solaris')
Diffstat (limited to 'audio/jack')
-rw-r--r--audio/jack/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile
index 5cd1fa4c7c1..dd87c28e53d 100644
--- a/audio/jack/Makefile
+++ b/audio/jack/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2013/07/15 02:02:17 ryoon Exp $
+# $NetBSD: Makefile,v 1.27 2014/02/23 10:22:13 richard Exp $
#
DISTNAME= jack-audio-connection-kit-${JACK_VERSION}
@@ -76,7 +76,7 @@ PLIST.coreaudio= yes
### XXX The sun driver is buggy on NetBSD right now. I hope to remedy
### this shortly.
###
-.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "Solaris"
+.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "SunOS"
CONFIGURE_ARGS+= --enable-sun
PLIST.sunaudio= yes
.else