From d333779212a1e8f38c7967f7d925f829dc529d3c Mon Sep 17 00:00:00 2001 From: stormshield-gt <143998166+stormshield-gt@users.noreply.github.com.> Date: Fri, 13 Sep 2024 14:47:35 +0200 Subject: [PATCH] Fix linker error when building without openssl --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 65f8ff3..c328d25 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#[cfg(feature = "bundled")] +#[cfg(any(feature = "bundled", feature = "bundled_without_openssl"))] extern crate pq_src; #[cfg(not(feature = "buildtime_bindgen"))]