pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/pulseaudio



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu May  5 08:25:31 UTC 2022

Modified Files:
        pkgsrc/audio/pulseaudio: Makefile

Log Message:
pulseaudio: Use OPSYS_VERSION to numerically compare NetBSD versions

XXX do we still want to support hacks for pulseaudio on NetBSD 4?


To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 pkgsrc/audio/pulseaudio/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/pulseaudio/Makefile
diff -u pkgsrc/audio/pulseaudio/Makefile:1.169 pkgsrc/audio/pulseaudio/Makefile:1.170
--- pkgsrc/audio/pulseaudio/Makefile:1.169      Mon Mar 28 10:43:38 2022
+++ pkgsrc/audio/pulseaudio/Makefile    Thu May  5 08:25:30 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.169 2022/03/28 10:43:38 tnn Exp $
+# $NetBSD: Makefile,v 1.170 2022/05/05 08:25:30 nia Exp $
 
 DISTNAME=      pulseaudio-15.0
 PKGREVISION=   2
@@ -54,7 +54,7 @@ REPLACE_BASH+=        src/utils/pa-info
 .include "../../mk/bsd.prefs.mk"
 
 # broken test for TLS
-.if ((${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[45].*)) || \
+.if ((${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 060000) || \
      (${OPSYS} == "Darwin" && !empty(PKGSRC_COMPILER:Mclang)))
 CONFIGURE_ENV+=                ac_cv_tls=none
 .endif



Home | Main Index | Thread Index | Old Index