Received: by mail.netbsd.org (Postfix, from userid 605) id A69BE84DC7; Tue, 25 Sep 2018 13:24:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ACA8E84D46 for ; Tue, 25 Sep 2018 13:24:40 +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 dBRQoieD1JU4 for ; Tue, 25 Sep 2018 13:24:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EBB2A84D36 for ; Tue, 25 Sep 2018 13:24:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E5231FBEE; Tue, 25 Sep 2018 13:24:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1537881879219160" MIME-Version: 1.0 Date: Tue, 25 Sep 2018 13:24:39 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/shells/zsh To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180925132439.E5231FBEE@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. --_----------=_1537881879219160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Sep 25 13:24:39 UTC 2018 Modified Files: pkgsrc/shells/zsh: distinfo pkgsrc/shells/zsh/patches: patch-configure.ac Log Message: zsh: Restore SunOS patch lost in previous update. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 pkgsrc/shells/zsh/distinfo cvs rdiff -u -r1.6 -r1.7 pkgsrc/shells/zsh/patches/patch-configure.ac Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1537881879219160 Content-Disposition: inline Content-Length: 2466 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/zsh/distinfo diff -u pkgsrc/shells/zsh/distinfo:1.65 pkgsrc/shells/zsh/distinfo:1.66 --- pkgsrc/shells/zsh/distinfo:1.65 Sat Sep 15 13:40:34 2018 +++ pkgsrc/shells/zsh/distinfo Tue Sep 25 13:24:39 2018 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.65 2018/09/15 13:40:34 wen Exp $ +$NetBSD: distinfo,v 1.66 2018/09/25 13:24:39 jperkin Exp $ SHA1 (zsh-5.6.2.tar.xz) = f10d17431ce2c867f7c99e3f539c6cf458461874 RMD160 (zsh-5.6.2.tar.xz) = 565369ebdba7d89c1ff46df0d42f20ffc93e34b8 SHA512 (zsh-5.6.2.tar.xz) = f0a49e41b55eb478692ab5471d7c9828956b7e96bc82944202b0ef1c49a889b21a0e7682aa5f59fd0054ebfd866c2244c8a622e7aa46c13038af5c226c48a3a2 Size (zsh-5.6.2.tar.xz) = 3077368 bytes SHA1 (patch-aczsh.m4) = 36c270d8d7cf727f48787ef889b2bd89cbf065e2 -SHA1 (patch-configure.ac) = 3f59bed777db389aaae72ad7564b16e99e17fee6 +SHA1 (patch-configure.ac) = b25808ef62acaa029d624b08c2ab23805161856e Index: pkgsrc/shells/zsh/patches/patch-configure.ac diff -u pkgsrc/shells/zsh/patches/patch-configure.ac:1.6 pkgsrc/shells/zsh/patches/patch-configure.ac:1.7 --- pkgsrc/shells/zsh/patches/patch-configure.ac:1.6 Sun Sep 9 00:46:52 2018 +++ pkgsrc/shells/zsh/patches/patch-configure.ac Tue Sep 25 13:24:39 2018 @@ -1,4 +1,4 @@ -$NetBSD: patch-configure.ac,v 1.6 2018/09/09 00:46:52 wen Exp $ +$NetBSD: patch-configure.ac,v 1.7 2018/09/25 13:24:39 jperkin Exp $ Use a compile test, not a run test, for whether various rlimit values are equivalent. A compile test is sufficient because zsh uses these @@ -7,7 +7,7 @@ preprocessor-time, constants. Fix SunOS flags. ---- configure.ac.orig 2018-09-09 00:27:38.000000000 +0000 +--- configure.ac.orig 2018-09-14 12:56:33.000000000 +0000 +++ configure.ac @@ -1881,77 +1881,9 @@ zsh_LIMIT_PRESENT(RLIMIT_NPTS) zsh_LIMIT_PRESENT(RLIMIT_SWAP) @@ -90,3 +90,12 @@ Fix SunOS flags. dnl -------------------------------------------- dnl Check for members of struct rusage +@@ -2813,7 +2745,7 @@ char *argv[]; + sunos*) DLLDFLAGS="${DLLDFLAGS=-assert nodefinitions}" ;; + sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G $ldflags}" ;; + aix*) DLLDFLAGS="${DLLDFLAGS=-G -bexpall -lc}" ;; +- solaris*|sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G}" ;; ++ solaris*|sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-shared}" ;; + darwin*) DLLDFLAGS="${DLLDFLAGS=-bundle -flat_namespace -undefined suppress}" ;; + beos*|haiku*) DLLDFLAGS="${DLLDFLAGS=-nostart}" ;; + openbsd*) --_----------=_1537881879219160--