pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/blosc2
Module Name: pkgsrc
Committed By: jperkin
Date: Mon Dec 16 11:05:02 UTC 2024
Modified Files:
pkgsrc/devel/blosc2: distinfo
pkgsrc/devel/blosc2/patches: patch-tests_test__common.h
Log Message:
blosc2: Re-fix illumos differently.
This way is terrible, but at least won't break NetBSD.
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/blosc2/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/devel/blosc2/patches/patch-tests_test__common.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/blosc2/distinfo
diff -u pkgsrc/devel/blosc2/distinfo:1.20 pkgsrc/devel/blosc2/distinfo:1.21
--- pkgsrc/devel/blosc2/distinfo:1.20 Wed Jul 31 07:02:13 2024
+++ pkgsrc/devel/blosc2/distinfo Mon Dec 16 11:05:02 2024
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.20 2024/07/31 07:02:13 adam Exp $
+$NetBSD: distinfo,v 1.21 2024/12/16 11:05:02 jperkin Exp $
BLAKE2s (blosc2-2.15.1.tar.gz) = 839bb2d28e0fb60f6f2d598a93257f79e380b33b33437d53214027f896ca1bbb
SHA512 (blosc2-2.15.1.tar.gz) = 56e7395297ce8e336b2e881bf4dae169268ef19328bae8c037aa297696f723196f65eb3f66c03728d1c6492b768e17ad586f8aae29c9033b571f736d391e9ab9
Size (blosc2-2.15.1.tar.gz) = 3203267 bytes
-SHA1 (patch-tests_test__common.h) = 8e0389248203edfe2358be0a220a8b958cb6c689
+SHA1 (patch-tests_test__common.h) = 380e3a7421d93adbd7d01241053c0b86c2d75e8d
Index: pkgsrc/devel/blosc2/patches/patch-tests_test__common.h
diff -u pkgsrc/devel/blosc2/patches/patch-tests_test__common.h:1.1 pkgsrc/devel/blosc2/patches/patch-tests_test__common.h:1.2
--- pkgsrc/devel/blosc2/patches/patch-tests_test__common.h:1.1 Mon May 29 16:38:23 2023
+++ pkgsrc/devel/blosc2/patches/patch-tests_test__common.h Mon Dec 16 11:05:02 2024
@@ -1,4 +1,6 @@
-$NetBSD: patch-tests_test__common.h,v 1.1 2023/05/29 16:38:23 wiz Exp $
+$NetBSD: patch-tests_test__common.h,v 1.2 2024/12/16 11:05:02 jperkin Exp $
+
+XXX: this should be detected properly, but has a habit of breaking.
--- tests/test_common.h.orig 2023-05-18 16:04:38.000000000 +0000
+++ tests/test_common.h
@@ -7,7 +9,7 @@ $NetBSD: patch-tests_test__common.h,v 1.
/* A (void *) cast needed for avoiding a warning with MINGW :-/ */
block = (void *)_aligned_malloc(size, alignment);
-#elif _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600
-+#elif defined(__NetBSD__) || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600
++#elif defined(__NetBSD__) || defined(__illumos__) || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600
/* Platform does have an implementation of posix_memalign */
res = posix_memalign(&block, alignment, size);
#elif defined(__APPLE__)
Home |
Main Index |
Thread Index |
Old Index