From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 92136C00140 for ; Mon, 15 Aug 2022 19:30:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 20C4240275; Mon, 15 Aug 2022 19:30:26 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 20C4240275 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sPcNxZrxEfXJ; Mon, 15 Aug 2022 19:30:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 4584740250; Mon, 15 Aug 2022 19:30:24 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 4584740250 Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 9FE571BF38D for ; Mon, 15 Aug 2022 19:30:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 7AB5E40886 for ; Mon, 15 Aug 2022 19:30:22 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org 7AB5E40886 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pO6iE1LdQGxE for ; Mon, 15 Aug 2022 19:30:21 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp4.osuosl.org (Postfix) with ESMTP id 8D6114087B for ; Mon, 15 Aug 2022 19:30:21 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org 8D6114087B Received: by busybox.osuosl.org (Postfix, from userid 4049) id 9C0C7876B9; Mon, 15 Aug 2022 19:15:51 +0000 (UTC) From: Yann E. MORIN To: buildroot@buildroot.org Date: Mon, 15 Aug 2022 21:18:56 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 192e047fda587b7b8c52140f13ba0fc9f323ed14 X-Git-Newrev: ac64086ce5f299b146c670ad4f3b63a163335ee2 X-Patchwork-Hint: ignore Message-Id: <20220815191551.9C0C7876B9@busybox.osuosl.org> Subject: [Buildroot] [git commit] package/uacme: ualpn needs libopenssl X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" commit: https://git.buildroot.net/buildroot/commit/?id=ac64086ce5f299b146c670ad4f3b63a163335ee2 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master ualpn is not compatible with libressl as stated by upstream in https://github.com/ndilieto/uacme/commit/32546c7caa1626bbef860cf81e53d10e29fca5cb resulting in the following build failure: ualpn.c: In function 'ssl_client_hello_cb': ualpn.c:2038:16: error: 'SSL_CLIENT_HELLO_RETRY' undeclared (first use in this function); did you mean 'SSL_F_CLIENT_HELLO'? 2038 | return SSL_CLIENT_HELLO_RETRY; | ^~~~~~~~~~~~~~~~~~~~~~ | SSL_F_CLIENT_HELLO Fixes: - http://autobuild.buildroot.org/results/d7d49cfce6f99c59e99c8e15399164fd5ecacc21 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- package/uacme/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/uacme/Config.in b/package/uacme/Config.in index 796f54754e..2c6864871c 100644 --- a/package/uacme/Config.in +++ b/package/uacme/Config.in @@ -21,6 +21,8 @@ config BR2_PACKAGE_UACME_UALPN bool "enable ualpn" depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBEV + select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL \ + if !(BR2_PACKAGE_GNUTLS || BR2_PACKAGE_MBEDTLS) help Build and install ualpn, the transparent proxying tls-alpn-01 challenge responder. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot