From e7e7f5eb8750d15e5f42506ba0267b8d4e6f1984 Mon Sep 17 00:00:00 2001 From: Thomas Bell Date: Wed, 24 Jul 2024 21:20:55 +0800 Subject: [PATCH] Fix linking errors by including MagickCore as well --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 7c65092..a3e3caf 100644 --- a/build.rs +++ b/build.rs @@ -94,7 +94,7 @@ fn main() { Ok(ref v) => v.split(PATH_SEPARATOR).map(|x| x.to_owned()).collect(), Err(_) => { if target.contains("windows") { - vec!["CORE_RL_MagickWand_".to_string()] + vec!["CORE_RL_MagickWand_".to_string(), "CORE_RL_MagickCore_".to_string()] } else if target.contains("freebsd") { vec!["MagickWand-7".to_string()] } else {