pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/alsa-lib



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.

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 <endian.h>
+ #elif defined(HAVE_SYS_ENDIAN_H)
+ #include <sys/endian.h>
 +#elif defined(__sun)
 +#include <sys/byteorder.h>
 +#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 <stdarg.h>
- #include <poll.h>
-@@ -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
  
  /*
   */



Home | Main Index | Thread Index | Old Index