aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-01-09 05:00:37 +0000
committerPo Lu2022-01-09 05:00:37 +0000
commit0c1099d6d840dfa470741f4e710c4ae63cecc26e (patch)
treea7907580f5607bd6362f2bf974adbcd6f06d1f4c /src
parent91f778d3af27a6c6d76da980b0082e00ebbf08ad (diff)
downloademacs-0c1099d6d840dfa470741f4e710c4ae63cecc26e.tar.gz
emacs-0c1099d6d840dfa470741f4e710c4ae63cecc26e.zip
* src/image.c (syms_of_image): Declare support for webp on Haiku.
Diffstat (limited to 'src')
-rw-r--r--src/image.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index e7d347b7820..700705de22e 100644
--- a/src/image.c
+++ b/src/image.c
@@ -11457,7 +11457,8 @@ non-numeric, there is no explicit limit on the size of images. */);
11457 add_image_type (Qpng); 11457 add_image_type (Qpng);
11458#endif 11458#endif
11459 11459
11460#if defined (HAVE_WEBP) 11460#if defined (HAVE_WEBP) || (defined (HAVE_NATIVE_IMAGE_API) \
11461 && defined (HAVE_BE_APP))
11461 DEFSYM (Qwebp, "webp"); 11462 DEFSYM (Qwebp, "webp");
11462 add_image_type (Qwebp); 11463 add_image_type (Qwebp);
11463#endif 11464#endif