emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/pgtk 82b4ea2 2/2: * src/image.c: Fix compile error related xpm i


From: Yuuki Harano
Subject: feature/pgtk 82b4ea2 2/2: * src/image.c: Fix compile error related xpm in image.c
Date: Wed, 19 May 2021 10:09:46 -0400 (EDT)

branch: feature/pgtk
commit 82b4ea2fe820e3e49fb500cb220df60186f298c6
Author: Yuuki Harano <masm+github@masm11.me>
Commit: Yuuki Harano <masm+github@masm11.me>

    * src/image.c: Fix compile error related xpm in image.c
    
    Use the same code as NS.
---
 src/image.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/image.c b/src/image.c
index 67c55ea..9b8b7d9 100644
--- a/src/image.c
+++ b/src/image.c
@@ -4191,7 +4191,7 @@ enum xpm_keyword_index
   XPM_LAST
 };
 
-#if defined HAVE_XPM || defined HAVE_NS
+#if defined HAVE_XPM || defined HAVE_NS || defined HAVE_PGTK
 /* Vector of image_keyword structures describing the format
    of valid XPM image specifications.  */
 
@@ -4433,7 +4433,7 @@ init_xpm_functions (void)
 
 #endif /* WINDOWSNT */
 
-#if defined HAVE_XPM || defined HAVE_NS
+#if defined HAVE_XPM || defined HAVE_NS || defined HAVE_PGTK
 /* Value is true if COLOR_SYMBOLS is a valid color symbols list
    for XPM images.  Such a list must consist of conses whose car and
    cdr are strings.  */
@@ -4840,7 +4840,7 @@ xpm_load (struct frame *f, struct image *img)
 #endif /* HAVE_XPM && !USE_CAIRO */
 
 #if (defined USE_CAIRO && defined HAVE_XPM)    \
-  || (defined HAVE_NS && !defined HAVE_XPM)
+  || ((defined HAVE_NS || defined HAVE_PGTK) && !defined HAVE_XPM)
 
 /* XPM support functions for NS where libxpm is not available, and for
    Cairo.  Only XPM version 3 (without any extensions) is supported.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]