pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/iir1



Module Name:    pkgsrc
Committed By:   vins
Date:           Sun Dec 14 08:41:33 UTC 2025

Modified Files:
        pkgsrc/audio/iir1: Makefile distinfo
Added Files:
        pkgsrc/audio/iir1/patches: patch-iir_RBJ.h

Log Message:
audio/iir1: fix build on SunOS


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/iir1/Makefile \
    pkgsrc/audio/iir1/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/audio/iir1/patches/patch-iir_RBJ.h

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

Modified files:

Index: pkgsrc/audio/iir1/Makefile
diff -u pkgsrc/audio/iir1/Makefile:1.1 pkgsrc/audio/iir1/Makefile:1.2
--- pkgsrc/audio/iir1/Makefile:1.1      Fri Sep 26 18:29:29 2025
+++ pkgsrc/audio/iir1/Makefile  Sun Dec 14 08:41:33 2025
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2025/09/26 18:29:29 js Exp $
+# $NetBSD: Makefile,v 1.2 2025/12/14 08:41:33 vins Exp $
 
 DISTNAME=      iir1-1.9.5
+PKGREVISION=   1
 CATEGORIES=    audio
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=berndporr/}
 GITHUB_TAG=    ${PKGVERSION_NOREV}
Index: pkgsrc/audio/iir1/distinfo
diff -u pkgsrc/audio/iir1/distinfo:1.1 pkgsrc/audio/iir1/distinfo:1.2
--- pkgsrc/audio/iir1/distinfo:1.1      Fri Sep 26 18:29:29 2025
+++ pkgsrc/audio/iir1/distinfo  Sun Dec 14 08:41:33 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1 2025/09/26 18:29:29 js Exp $
+$NetBSD: distinfo,v 1.2 2025/12/14 08:41:33 vins Exp $
 
 BLAKE2s (iir1-1.9.5.tar.gz) = 569269e6320180c11b908c0d3d4453975d6d3045c03cdcbb30b47696800afb98
 SHA512 (iir1-1.9.5.tar.gz) = 2b0658a621cdfb57796cf2fea5411975b442af4af267bce2f613ae53f43572f208fdea59d7ea0178e9984e311c406f289166789aa423505ac8ed2b889ddc9f64
 Size (iir1-1.9.5.tar.gz) = 2115864 bytes
+SHA1 (patch-iir_RBJ.h) = ea5c0dd92a245678b016a481b8f8d6c48451ebb8

Added files:

Index: pkgsrc/audio/iir1/patches/patch-iir_RBJ.h
diff -u /dev/null pkgsrc/audio/iir1/patches/patch-iir_RBJ.h:1.1
--- /dev/null   Sun Dec 14 08:41:33 2025
+++ pkgsrc/audio/iir1/patches/patch-iir_RBJ.h   Sun Dec 14 08:41:33 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-iir_RBJ.h,v 1.1 2025/12/14 08:41:33 vins Exp $
+
+Make call to sqrt function unambiguous.
+
+--- iir/RBJ.h.orig     2025-12-14 07:05:05.625345576 +0000
++++ iir/RBJ.h
+@@ -56,7 +56,7 @@ namespace Iir {
+  *
+  **/
+ 
+-#define ONESQRT2 (1/sqrt(2))
++#define ONESQRT2 (1/sqrt(static_cast<double>(2)))
+       
+ namespace RBJ {
+ 



Home | Main Index | Thread Index | Old Index