diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2024-07-23 20:28:15 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2024-07-23 20:31:09 +0000 |
commit | 6554e411c85c4bb4fdac6ebec08faa2bd9c54823 (patch) | |
tree | bfd8464d4d44f9e72bd75460fd3cb2f0b9a52c83 | |
parent | 7eac71bf192a0d4540eb0ac3630ceb744ac0462e (diff) |
graphics/gimp-app: fix build with libheif-1.18.1
libheif codecs can be dynamically loaded and it is not possible anymore
to determine available codecs at compile time. Assume the required codecs
are always available.
-rw-r--r-- | graphics/gimp-app/files/patch-configure | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/graphics/gimp-app/files/patch-configure b/graphics/gimp-app/files/patch-configure index d641b49a766a..d75892b66498 100644 --- a/graphics/gimp-app/files/patch-configure +++ b/graphics/gimp-app/files/patch-configure @@ -1,5 +1,23 @@ ---- configure.orig 2023-11-05 23:51:29 UTC +--- configure.orig 2024-05-03 00:36:33 UTC +++ configure +@@ -30417,13 +30417,13 @@ if test "x$have_libheif" = xyes; then + can_import_avif=no + can_export_avif=no + if test "x$have_libheif" = xyes; then +- can_import_heic=`$PKG_CONFIG --variable=builtin_h265_decoder libheif` +- can_export_heic=`$PKG_CONFIG --variable=builtin_h265_encoder libheif` ++ can_import_heic=yes ++ can_export_heic=yes + if test "x$can_import_heic" = xyes; then + MIME_TYPES="$MIME_TYPES;image/heif;image/heic" + fi +- can_import_avif=`$PKG_CONFIG --variable=builtin_avif_decoder libheif` +- can_export_avif=`$PKG_CONFIG --variable=builtin_avif_encoder libheif` ++ can_import_avif=yes ++ can_export_avif=yes + if test "x$can_import_avif" = xyes; then + MIME_TYPES="$MIME_TYPES;image/avif" + fi @@ -34797,9 +34797,9 @@ esac ;; esac |