configure: do not show "profile support: yes" when HEIC support is OFF.
Same as previous commit but for autotools, in a separate commit for easy cherry-pick.
This commit is contained in:
parent
e736b5fa0c
commit
fc25709367
1 changed files with 8 additions and 3 deletions
11
configure.ac
11
configure.ac
|
|
@ -1820,12 +1820,17 @@ fi
|
|||
AC_SUBST(FILE_HEIF)
|
||||
AM_CONDITIONAL(HAVE_LIBHEIF, test "x$have_libheif" = xyes)
|
||||
|
||||
have_heif_profile_support=no
|
||||
if test "x$have_libheif_1_4_0" = xyes; then
|
||||
AC_DEFINE(HAVE_LIBHEIF_1_4_0, 1,
|
||||
[Define to 1 if libheif >= 1.4.0 is available])
|
||||
|
||||
if test "x$warning_libheif" != "x"; then
|
||||
have_libheif_1_4_0="yes (see warning below)"
|
||||
if test "x$can_import_heic" = xyes || test "x$can_export_heic" = xyes; then
|
||||
if test "x$warning_libheif" != "x"; then
|
||||
have_heif_profile_support="yes (see warning below)"
|
||||
else
|
||||
have_heif_profile_support=yes
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
@ -3176,7 +3181,7 @@ Optional Plug-Ins:
|
|||
MNG: $have_libmng
|
||||
OpenEXR: $have_openexr
|
||||
WebP: $have_webp
|
||||
HEIC: import: $can_import_heic - export: $can_export_heic [[profile support: $have_libheif_1_4_0]]
|
||||
HEIC: import: $can_import_heic - export: $can_export_heic [[profile support: $have_heif_profile_support]]
|
||||
AVIF: import: $can_import_avif - export: $can_export_avif
|
||||
PDF (export): $have_cairo_pdf
|
||||
Print: $enable_print
|
||||
|
|
|
|||
Loading…
Reference in a new issue