]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug#59075
authorPo Lu <luangruo@yahoo.com>
Sun, 13 Nov 2022 09:30:37 +0000 (17:30 +0800)
committerPo Lu <luangruo@yahoo.com>
Sun, 13 Nov 2022 09:30:49 +0000 (17:30 +0800)
* src/nsimage.m (ns_can_use_native_image_api): Do not use native
image APIs for SVG images when RSVG is present.  (bug#59075)

src/nsimage.m

index 9cb5090dd0da7a50d97ed6667de99b099848f1aa..dd8768664a45b8a884990589d6a96f742eaebbed 100644 (file)
@@ -74,8 +74,10 @@ ns_can_use_native_image_api (Lisp_Object type)
     imageType = @"com.compuserve.gif";
   else if (EQ (type, Qtiff))
     imageType = @"public.tiff";
+#ifndef HAVE_RSVG
   else if (EQ (type, Qsvg))
     imageType = @"public.svg-image";
+#endif
   else if (EQ (type, Qheic))
     imageType = @"public.heic";