From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 19 Mar 2024 07:45:10 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1rmTDi-00DJTd-1t for lore@lore.pengutronix.de; Tue, 19 Mar 2024 07:45:10 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rmTDh-0003bR-Vb; Tue, 19 Mar 2024 07:45:09 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rmTDF-0003DW-RM; Tue, 19 Mar 2024 07:44:41 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rmTDF-007DlR-92; Tue, 19 Mar 2024 07:44:41 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1rmTDF-00FuhP-0k; Tue, 19 Mar 2024 07:44:41 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Tue, 19 Mar 2024 07:44:41 +0100 Message-Id: <20240319064441.3792864-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240311074308.34315-2-m.heidelberg@cab.de> References: <20240311074308.34315-2-m.heidelberg@cab.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-nettle: new package 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: Markus Heidelberg 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as ef7596f5e04f550869d11ceafec2a3e508a23dd8. Michael [sent from post-receive hook] On Tue, 19 Mar 2024 07:44:41 +0100, Markus Heidelberg wrote: > Will be needed for host-gnutls. > > Signed-off-by: Markus Heidelberg > Message-Id: <20240311074308.34315-2-m.heidelberg@cab.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-nettle.in b/rules/host-nettle.in > new file mode 100644 > index 000000000000..fc2d7f1650dc > --- /dev/null > +++ b/rules/host-nettle.in > @@ -0,0 +1,5 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_NETTLE > + tristate > + default y if ALLYES > diff --git a/rules/host-nettle.make b/rules/host-nettle.make > new file mode 100644 > index 000000000000..61e48b552b25 > --- /dev/null > +++ b/rules/host-nettle.make > @@ -0,0 +1,45 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2024 by Markus Heidelberg > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_NETTLE) += host-nettle > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# autoconf > +# > +HOST_NETTLE_CONF_TOOL := autoconf > +HOST_NETTLE_CONF_OPT := \ > + $(HOST_AUTOCONF) \ > + --enable-public-key \ > + --enable-assembler \ > + --disable-static \ > + --enable-shared \ > + --disable-openssl \ > + --disable-gcov \ > + --disable-documentation \ > + --disable-fat \ > + --disable-arm-neon \ > + --disable-arm64-crypto \ > + --disable-x86-aesni \ > + --disable-x86-sha-ni \ > + --disable-x86-pclmul \ > + --disable-power-crypto-ext \ > + --disable-power-altivec \ > + --disable-s390x-vf \ > + --disable-s390x-msa \ > + --enable-mini-gmp \ > + --without-include-path \ > + --without-lib-path > + > +# vim: syntax=make