Received: by mail.netbsd.org (Postfix, from userid 605) id 1AA1C856EA; Wed, 15 Nov 2017 15:04:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A0AB856E6 for ; Wed, 15 Nov 2017 15:04:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 05Eqe9rbfm6m for ; Wed, 15 Nov 2017 15:04:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 01164856D3 for ; Wed, 15 Nov 2017 15:04:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E613CFB3F; Wed, 15 Nov 2017 15:04:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151075826570020" MIME-Version: 1.0 Date: Wed, 15 Nov 2017 15:04:25 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/editors/xemacs-current/patches To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20171115150425.E613CFB3F@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_151075826570020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Wed Nov 15 15:04:25 UTC 2017 Modified Files: pkgsrc/editors/xemacs-current/patches: patch-src_lisp.h Log Message: Upgrade to XEmacs 21.5.34 Don't try to define max_align_t in C11 or C++11 mode. Regen patch. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151075826570020 Content-Disposition: inline Content-Length: 1193 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h diff -u pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h:1.1 pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h:1.2 --- pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h:1.1 Sat Mar 26 23:26:14 2016 +++ pkgsrc/editors/xemacs-current/patches/patch-src_lisp.h Wed Nov 15 15:04:25 2017 @@ -1,8 +1,10 @@ -$NetBSD: patch-src_lisp.h,v 1.1 2016/03/26 23:26:14 joerg Exp $ +$NetBSD: patch-src_lisp.h,v 1.2 2017/11/15 15:04:25 hauke Exp $ ---- src/lisp.h.orig 2016-03-26 13:47:05.129185443 +0000 +Don't try to define max_align_t in C11 or C++11 mode. + +--- src/lisp.h.orig 2013-08-21 17:43:44.000000000 +0000 +++ src/lisp.h -@@ -957,6 +957,7 @@ typedef int Boolint; +@@ -1156,6 +1156,7 @@ typedef int Boolint; /* No type has a greater alignment requirement than max_align_t. (except perhaps for types we don't use, like long double) */ @@ -10,7 +12,7 @@ $NetBSD: patch-src_lisp.h,v 1.1 2016/03/ typedef union { struct { long l; } l; -@@ -964,6 +965,7 @@ typedef union +@@ -1163,6 +1164,7 @@ typedef union struct { void (*f)(void); } f; struct { double d; } d; } max_align_t; --_----------=_151075826570020--