pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells/zsh zsh: add debug option, default off



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3c49acbfe435
branches:  trunk
changeset: 331212:3c49acbfe435
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Mar 14 09:45:25 2019 +0000

description:
zsh: add debug option, default off

This makes zsh much more stable on -current for me.

diffstat:

 shells/zsh/options.mk |  14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 0789c7cb5eeb -r 3c49acbfe435 shells/zsh/options.mk
--- a/shells/zsh/options.mk     Thu Mar 14 09:15:13 2019 +0000
+++ b/shells/zsh/options.mk     Thu Mar 14 09:45:25 2019 +0000
@@ -1,10 +1,20 @@
-# $NetBSD: options.mk,v 1.2 2017/10/13 09:35:19 jperkin Exp $
+# $NetBSD: options.mk,v 1.3 2019/03/14 09:45:25 wiz Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.zsh
-PKG_SUPPORTED_OPTIONS=         static
+PKG_SUPPORTED_OPTIONS=         debug static
 
 .include "../../mk/bsd.options.mk"
 
+.if !empty(PKG_OPTIONS:Mdebug)
+CONFIGURE_ARGS+=       --enable-zsh-debug
+CONFIGURE_ARGS+=       --enable-zsh-hash-debug
+CONFIGURE_ARGS+=       --enable-zsh-heap-debug
+CONFIGURE_ARGS+=       --enable-zsh-mem
+CONFIGURE_ARGS+=       --enable-zsh-mem-debug
+CONFIGURE_ARGS+=       --enable-zsh-mem-warning
+CONFIGURE_ARGS+=       --enable-zsh-secure-free
+.endif
+
 PLIST_VARS+=           dynamic
 .if !empty(PKG_OPTIONS:Mstatic)
 CONFIGURE_ARGS+=       --disable-dynamic



Home | Main Index | Thread Index | Old Index