pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/nss
Module Name: pkgsrc
Committed By: prlw1
Date: Mon Jan 12 14:12:35 UTC 2026
Modified Files:
pkgsrc/devel/nss: distinfo
Added Files:
pkgsrc/devel/nss/patches: patch-nss_lib_dbm_include_mcom__db.h
Log Message:
nss: fix build on NetBSD-current
Package doesn't use autoconf so no AC_HEADERS available.
endian.h has existed since 2017, so roughly NetBSD 7
To generate a diff of this commit:
cvs rdiff -u -r1.202 -r1.203 pkgsrc/devel/nss/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/devel/nss/patches/patch-nss_lib_dbm_include_mcom__db.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/nss/distinfo
diff -u pkgsrc/devel/nss/distinfo:1.202 pkgsrc/devel/nss/distinfo:1.203
--- pkgsrc/devel/nss/distinfo:1.202 Thu Jan 8 22:25:49 2026
+++ pkgsrc/devel/nss/distinfo Mon Jan 12 14:12:35 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.202 2026/01/08 22:25:49 wiz Exp $
+$NetBSD: distinfo,v 1.203 2026/01/12 14:12:35 prlw1 Exp $
BLAKE2s (nss-3.120.tar.gz) = cb526d51a559c1d71fed3137c432ce753688a6ec3731e0dfb6ac9a8f82f3d722
SHA512 (nss-3.120.tar.gz) = 7ec5b6c94a5c7fde9c02c3f1a10964e9cf5fe99372c8fcdb2866d10ef4c9cd42abc26931574dbfc229c358e2615d7907136a595e3e17944369894c1201fc2c6e
@@ -12,5 +12,6 @@ SHA1 (patch-nss_cmd_shlibsign_sign.sh) =
SHA1 (patch-nss_coreconf_OpenBSD.mk) = 944f71fcaaa7d5b2b3ed008341b1392a65480f2b
SHA1 (patch-nss_coreconf_command.mk) = a7b682d367825b48f8802fa30cee83f10680bb74
SHA1 (patch-nss_coreconf_nsinstall_Makefile) = 69981ba7355a4413111754859ef08cbd5e1bf4f4
+SHA1 (patch-nss_lib_dbm_include_mcom__db.h) = 90cd53e34545f7d5fb1f24319be80395858fd996
SHA1 (patch-nss_lib_freebl_sha256-armv8.c) = 48ec50204493dd510099a3495f3b775c6bfa8828
SHA1 (patch-nss_lib_freebl_verified_internal_Hacl__Bignum__Base.h) = 52565ef5bab1f37154d4266544144d56a5b95699
Added files:
Index: pkgsrc/devel/nss/patches/patch-nss_lib_dbm_include_mcom__db.h
diff -u /dev/null pkgsrc/devel/nss/patches/patch-nss_lib_dbm_include_mcom__db.h:1.1
--- /dev/null Mon Jan 12 14:12:35 2026
+++ pkgsrc/devel/nss/patches/patch-nss_lib_dbm_include_mcom__db.h Mon Jan 12 14:12:35 2026
@@ -0,0 +1,16 @@
+$NetBSD: patch-nss_lib_dbm_include_mcom__db.h,v 1.1 2026/01/12 14:12:35 prlw1 Exp $
+
+Cargo cult the test for operating systems rather
+than test for endian.h
+
+--- ./nss/lib/dbm/include/mcom_db.h.orig 2026-01-08 11:14:43.000000000 +0000
++++ ./nss/lib/dbm/include/mcom_db.h
+@@ -60,7 +60,7 @@ typedef PRUint32 uint32;
+ #include <sys/byteorder.h>
+ #endif
+
+-#if defined(__linux)
++#if defined(__linux) || defined(__NetBSD__)
+ #include <endian.h>
+ #ifndef BYTE_ORDER
+ #define BYTE_ORDER __BYTE_ORDER
Home |
Main Index |
Thread Index |
Old Index