From 6a90635761c3fbd1e55ab94219d332d73fec270f Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 21 Apr 2025 12:38:34 -0600 Subject: [PATCH] libpng: also compile statically --- recipes/libs/libpng/recipe.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/recipes/libs/libpng/recipe.toml b/recipes/libs/libpng/recipe.toml index 1dc77aace..8c2324f56 100644 --- a/recipes/libs/libpng/recipe.toml +++ b/recipes/libs/libpng/recipe.toml @@ -13,6 +13,12 @@ template = "custom" dependencies = ["zlib"] script = """ DYNAMIC_INIT +COOKBOOK_CONFIGURE_FLAGS=( + --host="${GNU_TARGET}" + --prefix="/usr" + --enable-shared + --enable-static +) cookbook_configure """