pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/xemacs
Module Name: pkgsrc
Committed By: hauke
Date: Mon Mar 17 13:08:58 UTC 2025
Modified Files:
pkgsrc/editors/xemacs: distinfo
pkgsrc/editors/xemacs/patches: patch-src_lisp.h
Log Message:
Take __ISO_C_VISIBLE into account for defining max_align_t or not, for
the sake of FreeBSD.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/editors/xemacs/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/xemacs/patches/patch-src_lisp.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/xemacs/distinfo
diff -u pkgsrc/editors/xemacs/distinfo:1.35 pkgsrc/editors/xemacs/distinfo:1.36
--- pkgsrc/editors/xemacs/distinfo:1.35 Tue Oct 26 10:21:43 2021
+++ pkgsrc/editors/xemacs/distinfo Mon Mar 17 13:08:58 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.35 2021/10/26 10:21:43 nia Exp $
+$NetBSD: distinfo,v 1.36 2025/03/17 13:08:58 hauke Exp $
BLAKE2s (xemacs/xemacs-21.4.24.tar.gz) = 1b186f91ab8d8347e1051a4e867d95393a9897e4e1f5dc51b9f6763a4ca46665
SHA512 (xemacs/xemacs-21.4.24.tar.gz) = b7a88d5a4a9f74f74c2067ed60f7ea87ac8ccad5d9c2c1033ecf07f540250191f8fa5f9e6d23d9fedd0f2ab1eb5ea6c29a7665a310ec512d85e2e4f337447213
@@ -16,7 +16,7 @@ SHA1 (patch-man_xemacs_custom.texi) = e5
SHA1 (patch-src_Makefile.in.in) = 8d2c262983ff16197c99429e7d4cc80cd8371775
SHA1 (patch-src_config.h.in) = 25ac897560abad51d83b58818e1dc2e77a8519e4
SHA1 (patch-src_emacs.c) = 19bbba8b9a777388060bab637b2bdc5e9027e11f
-SHA1 (patch-src_lisp.h) = ed1210a179f7dce537634e3129acc93f9c9b5966
+SHA1 (patch-src_lisp.h) = cced6b8e0dac07c4dae887739ad9677b4f9d0c7d
SHA1 (patch-src_process.c) = b33b37e7e68bd49036d90cfed206170456a4b443
SHA1 (patch-src_sound.c) = fd3717943310c049fbcc8598b072d80d9812ae20
SHA1 (patch-src_unexelf.c) = 5147a3f41d1188aaf08b99e768d8b93e9e28d305
Index: pkgsrc/editors/xemacs/patches/patch-src_lisp.h
diff -u pkgsrc/editors/xemacs/patches/patch-src_lisp.h:1.5 pkgsrc/editors/xemacs/patches/patch-src_lisp.h:1.6
--- pkgsrc/editors/xemacs/patches/patch-src_lisp.h:1.5 Wed Apr 13 13:52:27 2016
+++ pkgsrc/editors/xemacs/patches/patch-src_lisp.h Mon Mar 17 13:08:58 2025
@@ -1,4 +1,4 @@
-$NetBSD: patch-src_lisp.h,v 1.5 2016/04/13 13:52:27 hauke Exp $
+$NetBSD: patch-src_lisp.h,v 1.6 2025/03/17 13:08:58 hauke Exp $
Don't try to define max_align_t in C11 or C++11 mode.
@@ -8,7 +8,7 @@ Don't try to define max_align_t in C11 o
/* No type has a greater alignment requirement than max_align_t.
(except perhaps for types we don't use, like long double) */
-+#if (__STDC_VERSION__ - 0) < 201112L && (__cplusplus - 0) < 201103L
++#if (__STDC_VERSION__ - 0) < 201112L && (__cplusplus - 0) < 201103L && (__ISO_C_VISIBLE - 0) < 2011L
typedef union
{
struct { long l; } l;
Home |
Main Index |
Thread Index |
Old Index