diff options
author | Po Lu <luangruo@yahoo.com> | 2022-03-26 12:16:46 +0000 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-03-26 12:16:46 +0000 |
commit | b1e9151915d370cb638bb707ff1afdfd9a0d1eab (patch) | |
tree | 5bf1a218030da6dd93d517e1f9c717ea4faacfc1 /src/image.c | |
parent | 0549adb4bb7c31c99f99bd295a7cb65b380b83f8 (diff) | |
download | emacs-b1e9151915d370cb638bb707ff1afdfd9a0d1eab.tar.gz |
Enable the native display of BMP images on Haiku
* src/image.c (syms_of_image): Also register `bmp' image type on
Haiku when native image APIs are enabled.
Diffstat (limited to 'src/image.c')
-rw-r--r-- | src/image.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/image.c b/src/image.c index d44d6890846..07f1426ffd7 100644 --- a/src/image.c +++ b/src/image.c @@ -11555,12 +11555,16 @@ non-numeric, there is no explicit limit on the size of images. */); #if HAVE_NATIVE_IMAGE_API DEFSYM (Qnative_image, "native-image"); -# ifdef HAVE_NTGUI - DEFSYM (Qgdiplus, "gdiplus"); - DEFSYM (Qshlwapi, "shlwapi"); + +#if defined HAVE_NTGUI || defined HAVE_HAIKU DEFSYM (Qbmp, "bmp"); add_image_type (Qbmp); -# endif +#endif + +#ifdef HAVE_NTGUI + DEFSYM (Qgdiplus, "gdiplus"); + DEFSYM (Qshlwapi, "shlwapi"); +#endif #endif defsubr (&Sinit_image_library); |