Wed Jun 22 10:12:30 2022 UTC ()
jack: fix sense of condition. jack works on netbsd-9.


(nia)
diff -r1.2 -r1.3 pkgsrc/audio/jack/platform.mk

cvs diff -r1.2 -r1.3 pkgsrc/audio/jack/platform.mk (expand / switch to unified diff)

--- pkgsrc/audio/jack/platform.mk 2022/05/08 10:23:33 1.2
+++ pkgsrc/audio/jack/platform.mk 2022/06/22 10:12:30 1.3
@@ -1,21 +1,21 @@ @@ -1,21 +1,21 @@
1# $NetBSD: platform.mk,v 1.2 2022/05/08 10:23:33 nia Exp $ 1# $NetBSD: platform.mk,v 1.3 2022/06/22 10:12:30 nia Exp $
2 2
3.if !defined(PLATFORM_SUPPORTS_JACK) 3.if !defined(PLATFORM_SUPPORTS_JACK)
4. include "../../mk/bsd.fast.prefs.mk" 4. include "../../mk/bsd.fast.prefs.mk"
5 5
6JACK_PLATFORMS+= Darwin-*-* 6JACK_PLATFORMS+= Darwin-*-*
7JACK_PLATFORMS+= Linux-*-* 7JACK_PLATFORMS+= Linux-*-*
8 8
9.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} > 090000 9.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} >= 090000
10PLATFORM_SUPPORTS_JACK= yes 10PLATFORM_SUPPORTS_JACK= yes
11.endif 11.endif
12 12
13. for _jack_platform in ${JACK_PLATFORMS} 13. for _jack_platform in ${JACK_PLATFORMS}
14. if !empty(MACHINE_PLATFORM:M${_jack_platform}) 14. if !empty(MACHINE_PLATFORM:M${_jack_platform})
15PLATFORM_SUPPORTS_JACK= yes 15PLATFORM_SUPPORTS_JACK= yes
16. endif 16. endif
17. endfor 17. endfor
18 18
19PLATFORM_SUPPORTS_JACK?= no 19PLATFORM_SUPPORTS_JACK?= no
20 20
21.endif # !defined(PLATFORM_SUPPORTS_JACK) 21.endif # !defined(PLATFORM_SUPPORTS_JACK)