Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A45EB84D4C for ; Thu, 23 Nov 2023 16:19:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id NSGU7TZvdtYK for ; Thu, 23 Nov 2023 16:19:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0FD9084CD8 for ; Thu, 23 Nov 2023 16:19:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 03482FA3F; Thu, 23 Nov 2023 16:19:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170075638150490" MIME-Version: 1.0 Date: Thu, 23 Nov 2023 16:19:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/alsa-lib To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231123161942.03482FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_170075638150490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Nov 23 16:19:41 UTC 2023 Modified Files: pkgsrc/audio/alsa-lib: distinfo pkgsrc/audio/alsa-lib/patches: patch-ae Log Message: alsa-lib: fix endianness patch for Solaris To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/audio/alsa-lib/distinfo cvs rdiff -u -r1.10 -r1.11 pkgsrc/audio/alsa-lib/patches/patch-ae Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170075638150490 Content-Disposition: inline Content-Length: 2356 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/alsa-lib/distinfo diff -u pkgsrc/audio/alsa-lib/distinfo:1.38 pkgsrc/audio/alsa-lib/distinfo:1.39 --- pkgsrc/audio/alsa-lib/distinfo:1.38 Thu Nov 23 16:15:04 2023 +++ pkgsrc/audio/alsa-lib/distinfo Thu Nov 23 16:19:41 2023 @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.38 2023/11/23 16:15:04 ryoon Exp $ +$NetBSD: distinfo,v 1.39 2023/11/23 16:19:41 wiz Exp $ BLAKE2s (alsa-lib-1.2.10.tar.bz2) = 25ee95e555f6dd9f790eefc6da792b0744f123a281327dc70d20cc3cffe5d80b SHA512 (alsa-lib-1.2.10.tar.bz2) = 4ccbd1dc5a612044571c26290923009e4c3f7959b30a5d0bed47daa68bbefaff9059c4f0fa3bc16f22c1eed2d36f079139369f40243da5921ae4de02a4541939 Size (alsa-lib-1.2.10.tar.bz2) = 1107007 bytes SHA1 (patch-ad) = 79a0f048751899247ec12990cd02332b977af248 -SHA1 (patch-ae) = aa730a8e5b5ed9c12564e05937bfc81c94d53e91 +SHA1 (patch-ae) = e652f7c0230d6a22042fedd0f7c0189f68dc0984 SHA1 (patch-af) = 257b06f10616c04c2724e30777b027e5e7e443f9 SHA1 (patch-ah) = 37079a0b99fba9bd16b2318c9a17359d9c4edb54 SHA1 (patch-aq) = 29fc896b2acad44e5fa9619aca1df5dddd76fa5e Index: pkgsrc/audio/alsa-lib/patches/patch-ae diff -u pkgsrc/audio/alsa-lib/patches/patch-ae:1.10 pkgsrc/audio/alsa-lib/patches/patch-ae:1.11 --- pkgsrc/audio/alsa-lib/patches/patch-ae:1.10 Thu Nov 23 16:15:04 2023 +++ pkgsrc/audio/alsa-lib/patches/patch-ae Thu Nov 23 16:19:41 2023 @@ -1,14 +1,14 @@ -$NetBSD: patch-ae,v 1.10 2023/11/23 16:15:04 ryoon Exp $ +$NetBSD: patch-ae,v 1.11 2023/11/23 16:19:41 wiz Exp $ - Don't assert GNU ld on Solaris, where it might not be true. - Add endian compat. ---- include/local.h.orig 2023-05-04 07:16:16.000000000 +0000 +--- include/local.h.orig 2023-09-01 15:35:48.000000000 +0000 +++ include/local.h -@@ -45,6 +45,15 @@ - #endif - #ifndef __BIG_ENDIAN - #define __BIG_ENDIAN BIG_ENDIAN +@@ -34,6 +34,15 @@ + #include + #elif defined(HAVE_SYS_ENDIAN_H) + #include +#elif defined(__sun) +#include +#define __LITTLE_ENDIAN 1234 @@ -18,10 +18,10 @@ $NetBSD: patch-ae,v 1.10 2023/11/23 16:1 +#else +#define __BYTE_ORDER __LITTLE_ENDIAN +#endif + #else + #error Header defining endianness not defined #endif - #include - #include -@@ -274,7 +283,9 @@ extern snd_lib_error_handler_t snd_err_m +@@ -279,7 +288,9 @@ extern snd_lib_error_handler_t snd_err_m /* */ --_----------=_170075638150490--