From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 12 Apr 2023 08:30:46 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pmU0D-000nQj-GG for lore@lore.pengutronix.de; Wed, 12 Apr 2023 08:30:46 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1pmU0D-0002zY-IM; Wed, 12 Apr 2023 08:30:45 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pmTzR-0008KG-4W; Wed, 12 Apr 2023 08:29:57 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1pmTzQ-00Afps-5b; Wed, 12 Apr 2023 08:29:56 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1pmTzP-00EPls-FQ; Wed, 12 Apr 2023 08:29:55 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 12 Apr 2023 08:29:55 +0200 Message-Id: <20230412062955.3435649-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230407194311.2036233-1-christian.melki@t2data.com> References: <20230407194311.2036233-1-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] jimtcl: Fixes + Version bump. 0.81 -> 0.82 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Christian Melki Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as df268e8b231cd04fc4d03fd59429638b87cb799e. Michael [sent from post-receive hook] On Wed, 12 Apr 2023 08:29:55 +0200, Christian Melki wrote: > http://jim.tcl.tk/index.html/doc/www/www/articles/jim-release-0-82/ > > * Add ZLIB dependency in .in as jimtcl actively searches for it. > * Correct negation options. The jimtcl "configure" script > has stuff enabled as default so negate the options to > actually build stuff as specified. > > Signed-off-by: Christian Melki > Message-Id: <20230407194311.2036233-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/jimtcl.in b/rules/jimtcl.in > index 1e052d3e41f6..93b869536df1 100644 > --- a/rules/jimtcl.in > +++ b/rules/jimtcl.in > @@ -4,6 +4,7 @@ menuconfig JIMTCL > tristate > prompt "jimtcl " > select HOST_JIMTCL > + select ZLIB > select LIBC_M if JIMTCL_MATH > select OPENSSL if JIMTCL_SSL > help > diff --git a/rules/jimtcl.make b/rules/jimtcl.make > index 05b6cc16daff..3c99a4115589 100644 > --- a/rules/jimtcl.make > +++ b/rules/jimtcl.make > @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JIMTCL) += jimtcl > # > # Paths and names > # > -JIMTCL_VERSION := 0.81 > -JIMTCL_MD5 := a6d232ed12f47c28b56c97a955448e34 > +JIMTCL_VERSION := 0.82 > +JIMTCL_MD5 := 7d6be6bff1079778bf27d50ba9185388 > JIMTCL := jimtcl-$(JIMTCL_VERSION) > JIMTCL_SUFFIX := tar.gz > JIMTCL_URL := https://github.com/msteveb/jimtcl/archive/refs/tags/$(JIMTCL_VERSION).$(JIMTCL_SUFFIX) > @@ -39,12 +39,12 @@ JIMTCL_CONF_ENV := \ > autosetup_tclsh=$(PTXDIST_SYSROOT_HOST)/usr/bin/jimsh > JIMTCL_CONF_OPT := \ > $(CROSS_AUTOCONF_USR) \ > - $(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,--utf8,) \ > + $(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,,--disable-utf8) \ > $(call ptx/ifdef, PTXCONF_JIMTCL_LINEEDIT,,--disable-lineedit) \ > $(call ptx/ifdef, PTXCONF_JIMTCL_REFERENCES,,--disable-references) \ > - $(call ptx/ifdef, PTXCONF_JIMTCL_MATH,--math,) \ > - $(call ptx/ifdef, PTXCONF_JIMTCL_SSL,--ssl,) \ > - $(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,--ipv6,) \ > + $(call ptx/ifdef, PTXCONF_JIMTCL_MATH,,--disable-math) \ > + $(call ptx/ifdef, PTXCONF_JIMTCL_SSL,,--disable-ssl) \ > + $(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,,--disable-ipv6) \ > --shared \ > $(call ptx/ifdef, PTXCONF_JIMTCL_POSIX_REGEX,--disable-jim-regexp,) \ > --disable-docs \