From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 84C1E71242 for ; Fri, 24 Jun 2022 14:56:02 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7BF542F639 for ; Fri, 24 Jun 2022 14:56:02 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id EDB392F612 for ; Fri, 24 Jun 2022 14:56:00 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 8477C430E3 for ; Fri, 24 Jun 2022 14:55:54 +0200 (CEST) From: Stoiko Ivanov To: pve-devel@lists.proxmox.com Date: Fri, 24 Jun 2022 14:55:51 +0200 Message-Id: <20220624125552.2123628-3-s.ivanov@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220624125552.2123628-1-s.ivanov@proxmox.com> References: <20220624125552.2123628-1-s.ivanov@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.195 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH zfsonlinux 2/3] Build with libcurl for new keylocation=https:// X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2022 12:56:02 -0000 following commit da40a1b007d2a99bac95bd67ec6dd7b8e217c0cf from debian-upstream. However since some of our rust-packages seem to depend on libcurl4-gnutls-dev (via librust-curl-sys-dev) we add a option for the dependency - I would assume that both should work equally well (the callers are in upstream/lib/libzfs/libzfs_crypto.c) Signed-off-by: Stoiko Ivanov --- debian/control | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 06ec27b7..b6029e8e 100644 --- a/debian/control +++ b/debian/control @@ -6,6 +6,7 @@ Build-Depends: abigail-tools, debhelper-compat (= 12), dh-python, libblkid-dev, + libcurl4-openssl-dev | libcurl4-gnutls-dev, libelf-dev, libpam0g-dev, libssl-dev | libssl1.0-dev, @@ -84,9 +85,12 @@ Package: libzfs4linux Section: contrib/libs Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends} +# The libcurl4 is loaded through dlopen("libcurl.so.4"). +# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=988521 +Recommends: libcurl4 Breaks: libzfs2, libzfs2linux, libzfs3linux, libzfs4 Replaces: libzfs2, libzfs2linux, libzfs3linux, libzfs4 -Description: OpenZFS filesystem library for Linux +Description: OpenZFS filesystem library for Linux - general support OpenZFS is a storage platform that encompasses the functionality of traditional filesystems and volume managers. It supports data checksums, compression, encryption, snapshots, and more. -- 2.30.2