Received: by mail.netbsd.org (Postfix, from userid 605) id 4778684E54; Sat, 16 Mar 2019 14:01:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C386284E28 for ; Sat, 16 Mar 2019 14:01:45 +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 L9UzedvtKrMb for ; Sat, 16 Mar 2019 14:01:45 +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 4979184D5F for ; Sat, 16 Mar 2019 14:01:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43822FB16; Sat, 16 Mar 2019 14:01:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1552744905178920" MIME-Version: 1.0 Date: Sat, 16 Mar 2019 14:01:45 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/shells/zsh To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190316140145.43822FB16@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. --_----------=_1552744905178920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Mar 16 14:01:45 UTC 2019 Modified Files: pkgsrc/shells/zsh: Makefile options.mk Log Message: zsh: remove --enable-zsh-mem from default arguments. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 pkgsrc/shells/zsh/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/shells/zsh/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1552744905178920 Content-Disposition: inline Content-Length: 1787 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/zsh/Makefile diff -u pkgsrc/shells/zsh/Makefile:1.91 pkgsrc/shells/zsh/Makefile:1.92 --- pkgsrc/shells/zsh/Makefile:1.91 Sat Mar 16 13:29:30 2019 +++ pkgsrc/shells/zsh/Makefile Sat Mar 16 14:01:45 2019 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.91 2019/03/16 13:29:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.92 2019/03/16 14:01:45 wiz Exp $ DISTNAME= zsh-5.7.1 +PKGREVISION= 1 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=zsh/} EXTRACT_SUFX= .tar.xz @@ -18,9 +19,6 @@ TEXINFO_REQD= 4.0 CONFIGURE_ARGS+= --disable-gdbm CONFIGURE_ARGS+= --enable-etcdir=${PKG_SYSCONFDIR:Q} -# Stabilize zsh without jemalloc in libc -# XXX Remove this and enable it in debug option. jemalloc in libc is stable now. -CONFIGURE_ARGS+= --enable-zsh-mem # Ensure we can find initscr(3) otherwise the curses module will not be built. CONFIGURE_ARGS+= --with-term-lib="${BUILDLINK_LIBNAME.curses} ${BUILDLINK_LIBNAME.terminfo}" Index: pkgsrc/shells/zsh/options.mk diff -u pkgsrc/shells/zsh/options.mk:1.5 pkgsrc/shells/zsh/options.mk:1.6 --- pkgsrc/shells/zsh/options.mk:1.5 Sat Mar 16 13:29:30 2019 +++ pkgsrc/shells/zsh/options.mk Sat Mar 16 14:01:45 2019 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2019/03/16 13:29:30 ryoon Exp $ +# $NetBSD: options.mk,v 1.6 2019/03/16 14:01:45 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.zsh PKG_SUPPORTED_OPTIONS= debug static @@ -12,8 +12,7 @@ CONFIGURE_ARGS+= --enable-zsh-heap-debug CONFIGURE_ARGS+= --enable-zsh-mem-debug CONFIGURE_ARGS+= --enable-zsh-mem-warning CONFIGURE_ARGS+= --enable-zsh-secure-free -# XXX Enable this and remove it in debug option. jemalloc in libc is stable now. -#CONFIGURE_ARGS+= --enable-zsh-mem +CONFIGURE_ARGS+= --enable-zsh-mem .endif PLIST_VARS+= dynamic --_----------=_1552744905178920--