From: Po Lu Date: Mon, 6 Mar 2023 13:42:29 +0000 (+0800) Subject: Fix configuration of webp libraries X-Git-Tag: emacs-29.0.90~234 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de4277af009;p=emacs.git Fix configuration of webp libraries * configure.ac: Link with libwebpdecoder along with libwebpdemux. (bug#61988) --- diff --git a/configure.ac b/configure.ac index bc7e61048c3..2787370fbff 100644 --- a/configure.ac +++ b/configure.ac @@ -2803,7 +2803,8 @@ if test "${with_webp}" != "no"; then || test "${HAVE_W32}" = "yes" || test "${HAVE_NS}" = "yes" \ || test "${HAVE_BE_APP}" = "yes" || test "${HAVE_PGTK}" = "yes"; then WEBP_REQUIRED=0.6.0 - WEBP_MODULE="libwebpdemux >= $WEBP_REQUIRED" + WEBP_MODULE="libwebpdemux >= $WEBP_REQUIRED \ + libwebpdecoder >= $WEBP_REQUIRED" EMACS_CHECK_MODULES([WEBP], [$WEBP_MODULE]) AC_SUBST([WEBP_CFLAGS])