Received: by mail.netbsd.org (Postfix, from userid 605) id 53527856D3; Wed, 15 Nov 2017 14:50:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D10CB84DAA for ; Wed, 15 Nov 2017 14:50:50 +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 idrWp5FxmqIq for ; Wed, 15 Nov 2017 14:50:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6341484D20 for ; Wed, 15 Nov 2017 14:50:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5CF62FB3F; Wed, 15 Nov 2017 14:50:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151075745043290" MIME-Version: 1.0 Date: Wed, 15 Nov 2017 14:50:50 +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: <20171115145050.5CF62FB3F@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. --_----------=_151075745043290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Wed Nov 15 14:50:50 UTC 2017 Added Files: pkgsrc/editors/xemacs-current/patches: patch-configure Removed Files: pkgsrc/editors/xemacs-current/patches: patch-ab Log Message: Upgrade to XEmacs 21.5.34 Add POSIX syntax for passing ld(1) options through the compiler front end NetBSD machine settings are gone Other patches are in upstream Was patch-ab To generate a diff of this commit: cvs rdiff -u -r1.7 -r0 pkgsrc/editors/xemacs-current/patches/patch-ab cvs rdiff -u -r0 -r1.1 pkgsrc/editors/xemacs-current/patches/patch-configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151075745043290 Content-Disposition: inline Content-Length: 1297 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/editors/xemacs-current/patches/patch-configure diff -u /dev/null pkgsrc/editors/xemacs-current/patches/patch-configure:1.1 --- /dev/null Wed Nov 15 14:50:50 2017 +++ pkgsrc/editors/xemacs-current/patches/patch-configure Wed Nov 15 14:50:50 2017 @@ -0,0 +1,29 @@ +$NetBSD: patch-configure,v 1.1 2017/11/15 14:50:50 hauke Exp $ + +Add POSIX syntax for passing ld(1) options through the compiler +front end + +Remove bashism + +Was patch-ab + +--- configure.orig 2013-08-21 17:45:50.000000000 +0000 ++++ configure +@@ -10107,7 +10107,7 @@ $as_echo_n "checking for runtime librari + linux* | irix*) dash_r="-rpath " ;; + *) + dash_r="" +- for try_dash_r in "-R" "-R " "-rpath "; do ++ for try_dash_r in "-Wl,R" "-R" "-R " "-rpath "; do + xe_check_libs="${try_dash_r}/no/such/file-or-directory" + + if test "$GCC" = "yes"; then +@@ -21819,7 +21819,7 @@ fi + if test "$have_vdb_mach" = yes ; then + echo " Using mach exception mechanism as vdb fault handler." + fi +-if test "$have_vdb_fake" = yes && test "$with_vdb" == fake; then ++if test "$have_vdb_fake" = yes && test "$with_vdb" = fake; then + echo " Virtual dirty bit write barrier manually disabled." + fi + test "$with_pdump" = yes && echo " Using the new portable dumper." --_----------=_151075745043290--