From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 19 Mar 2024 07:45:12 +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 1rmTDk-00DJU2-08 for lore@lore.pengutronix.de; Tue, 19 Mar 2024 07:45:12 +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 1rmTDj-0003gC-Q5; Tue, 19 Mar 2024 07:45:11 +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 1rmTDG-0003Dg-Fr; Tue, 19 Mar 2024 07:44:42 +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 1rmTDG-007DlV-3b; Tue, 19 Mar 2024 07:44:42 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1rmTDG-00Fui6-0D; Tue, 19 Mar 2024 07:44:42 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Tue, 19 Mar 2024 07:44:42 +0100 Message-Id: <20240319064442.3792907-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240311074308.34315-3-m.heidelberg@cab.de> References: <20240311074308.34315-3-m.heidelberg@cab.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-gnutls: 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 359576397afb515a8e33cce77f87f14cc2b1c478. Michael [sent from post-receive hook] On Tue, 19 Mar 2024 07:44:41 +0100, Markus Heidelberg wrote: > Will be needed for certain configurations of U-Boot. > > Signed-off-by: Markus Heidelberg > Message-Id: <20240311074308.34315-3-m.heidelberg@cab.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-gnutls.in b/rules/host-gnutls.in > new file mode 100644 > index 000000000000..9178fa7ef4b2 > --- /dev/null > +++ b/rules/host-gnutls.in > @@ -0,0 +1,7 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_GNUTLS > + tristate > + default y if ALLYES > + select HOST_LIBTASN1 > + select HOST_NETTLE > diff --git a/rules/host-gnutls.make b/rules/host-gnutls.make > new file mode 100644 > index 000000000000..ddba332c8e49 > --- /dev/null > +++ b/rules/host-gnutls.make > @@ -0,0 +1,95 @@ > +# -*-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_GNUTLS) += host-gnutls > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# autoconf > +# > +HOST_GNUTLS_CONF_TOOL := autoconf > +HOST_GNUTLS_CONF_OPT := \ > + $(HOST_AUTOCONF) \ > + $(GLOBAL_LARGE_FILE_OPTION) \ > + --enable-threads=posix \ > + --disable-code-coverage \ > + --disable-bash-tests \ > + --disable-doc \ > + --disable-manpages \ > + --disable-tools \ > + --enable-cxx \ > + --disable-dyn-ncrypt \ > + --enable-hardware-acceleration \ > + --enable-tls13-interop \ > + --enable-padlock \ > + --enable-strict-der-time \ > + --enable-sha1-support \ > + --disable-ssl3-support \ > + --enable-ssl2-support \ > + --enable-dtls-srtp-support \ > + --enable-alpn-support \ > + --enable-heartbeat-support \ > + --enable-srp-authentication \ > + --enable-psk-authentication \ > + --enable-anon-authentication \ > + --enable-dhe \ > + --enable-ecdhe \ > + --enable-gost \ > + --disable-cryptodev \ > + --disable-afalg \ > + --disable-ktls \ > + --enable-ocsp \ > + --disable-openssl-compatibility \ > + --disable-tests \ > + --disable-fuzzer-target \ > + --disable-gtk-doc \ > + --disable-gtk-doc-html \ > + --disable-gtk-doc-pdf \ > + --disable-nls \ > + --disable-rpath \ > + --disable-seccomp-tests \ > + --enable-cross-guesses=conservative \ > + --disable-valgrind-tests \ > + --disable-full-test-suite \ > + --disable-oldgnutls-interop \ > + --disable-gcc-warnings \ > + --disable-static \ > + --enable-shared \ > + --disable-fips140-mode \ > + --disable-strict-x509 \ > + --enable-non-suiteb-curves \ > + --disable-libdane \ > + --disable-guile \ > + --without-gcov \ > + --with-nettle-mini \ > + --without-included-libtasn1 \ > + --with-included-unistring \ > + --without-fips140-key \ > + --without-fips140-module-name \ > + --without-fips140-module-version \ > + --with-pkcs12-iter-count=600000 \ > + --without-idn \ > + --without-unbound-root-key-file \ > + --without-system-priority-file \ > + --without-default-priority-string \ > + --without-p11-kit \ > + --without-tpm2 \ > + --without-tpm \ > + --without-trousers-lib \ > + --without-zlib \ > + --without-brotli \ > + --without-zstd \ > + --with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt > + > +# vim: syntax=make