pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/wmsmixer



Module Name:    pkgsrc
Committed By:   nia
Date:           Tue Sep 20 06:30:48 UTC 2022

Modified Files:
        pkgsrc/audio/wmsmixer: distinfo
Added Files:
        pkgsrc/audio/wmsmixer/patches: patch-mixctl.h
Removed Files:
        pkgsrc/audio/wmsmixer/patches: patch-ab

Log Message:
wmsmixer: Simplify OSS header inclusion situation.

Should help Solaris. I don't trust Linux to install the OSS header
in a sensible place any more, so that's the only one that's still
special-cased.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/audio/wmsmixer/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/audio/wmsmixer/patches/patch-ab
cvs rdiff -u -r0 -r1.1 pkgsrc/audio/wmsmixer/patches/patch-mixctl.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/wmsmixer/distinfo
diff -u pkgsrc/audio/wmsmixer/distinfo:1.8 pkgsrc/audio/wmsmixer/distinfo:1.9
--- pkgsrc/audio/wmsmixer/distinfo:1.8  Tue Oct 26 09:59:35 2021
+++ pkgsrc/audio/wmsmixer/distinfo      Tue Sep 20 06:30:48 2022
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.8 2021/10/26 09:59:35 nia Exp $
+$NetBSD: distinfo,v 1.9 2022/09/20 06:30:48 nia Exp $
 
 BLAKE2s (wmsmixer-0.5.1.tar.gz) = 93f9149904deff7b9addadda90a4350e4e30a86de7fac2bd8e422a0ec08823d9
 SHA512 (wmsmixer-0.5.1.tar.gz) = 2731645addb9888b30cbfcaa1f9609c036855d3ee864628535fc5a0dd4c005d01b111bac3dd7f9d11f4794f55f22be65564ccafe598f098b13abdfa9277da299
 Size (wmsmixer-0.5.1.tar.gz) = 33350 bytes
 SHA1 (patch-aa) = 0db2abe3d917778545e420fe61e4cefce03ce0c6
-SHA1 (patch-ab) = 78ede51033648a4a79d884ebb3d5c6b0b5e9ba86
+SHA1 (patch-mixctl.h) = 1d239e7b2f5c16045fdd59546547cc8ab93b06d2

Added files:

Index: pkgsrc/audio/wmsmixer/patches/patch-mixctl.h
diff -u /dev/null pkgsrc/audio/wmsmixer/patches/patch-mixctl.h:1.1
--- /dev/null   Tue Sep 20 06:30:48 2022
+++ pkgsrc/audio/wmsmixer/patches/patch-mixctl.h        Tue Sep 20 06:30:48 2022
@@ -0,0 +1,23 @@
+$NetBSD: patch-mixctl.h,v 1.1 2022/09/20 06:30:48 nia Exp $
+
+Simplify OSS header inclusion situation. Should help DragonFly, Solaris...
+
+--- mixctl.h.orig      2001-03-02 10:32:05.000000000 +0000
++++ mixctl.h
+@@ -15,14 +15,10 @@
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <unistd.h>
+-#ifdef __NetBSD__
+-#include <soundcard.h>
+-#endif
+-#ifdef __FreeBSD__
+-#include <machine/soundcard.h>
+-#endif
+ #ifdef __linux__
+ #include <linux/soundcard.h>
++#else
++#include <sys/soundcard.h>
+ #endif
+ 
+ class MixCtl



Home | Main Index | Thread Index | Old Index