From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 08 Jul 2022 09:12:08 +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 1o9i9l-00ADhW-Jd for lore@lore.pengutronix.de; Fri, 08 Jul 2022 09:12:08 +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 1o9i9m-0002Ts-Dx; Fri, 08 Jul 2022 09:12:06 +0200 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o9i8l-0001uO-B8 for ptxdist@pengutronix.de; Fri, 08 Jul 2022 09:11:07 +0200 Received: from adahl by ada.ifak-system.com with local (Exim 4.92) (envelope-from ) id 1o9i8k-0004ni-G6; Fri, 08 Jul 2022 09:11:02 +0200 From: Alexander Dahl To: ptxdist@pengutronix.de Date: Fri, 8 Jul 2022 09:11:02 +0200 Message-Id: <20220708071102.18393-5-ada@thorsis.com> In-Reply-To: <20220708071102.18393-1-ada@thorsis.com> References: <20220708071102.18393-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.6 required=4.0 tests=AWL,BAYES_00,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH 4/4] libzmq: Prefer external libsodium over internal tweetnacl 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: Alexander Aring 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 The external library is faster and seems to be better maintained. Signed-off-by: Alexander Dahl --- rules/libzmq.in | 1 + rules/libzmq.make | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/libzmq.in b/rules/libzmq.in index c272f845d..f03831ecd 100644 --- a/rules/libzmq.in +++ b/rules/libzmq.in @@ -3,6 +3,7 @@ config LIBZMQ tristate prompt "libzmq" + select LIBSODIUM help The zeroMQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by diff --git a/rules/libzmq.make b/rules/libzmq.make index a8eab129f..d221ef6ac 100644 --- a/rules/libzmq.make +++ b/rules/libzmq.make @@ -65,7 +65,7 @@ LIBZMQ_CONF_OPT := \ --without-docs \ --with-poller=epoll \ --without-libgssapi_krb5 \ - --without-libsodium \ + --with-libsodium \ --without-nss \ --without-tls \ --without-pgm \ -- 2.30.2