summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2019-10-13 03:52:05 -0500
committerGary Kramlich <grim@reaperworld.com>2019-10-13 03:52:05 -0500
commitd451b8e23453d8e8f50440c7f2dfae3be3ea54db (patch)
tree2c2cdfafc87b8921035d5b5fd004586648df67c9
parenta490002d4ef07e2f7a50163d64f31bf33bf74235 (diff)
downloadpidgin-d451b8e23453d8e8f50440c7f2dfae3be3ea54db.tar.gz
Fix a preproc check that should have been checking for HAVE_X11 but was just checking if windows
-rw-r--r--pidgin/gtkconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidgin/gtkconv.c b/pidgin/gtkconv.c
index 0a9216461c..21ef2d5b38 100644
--- a/pidgin/gtkconv.c
+++ b/pidgin/gtkconv.c
@@ -23,7 +23,7 @@
#include "internal.h"
#include "pidgin.h"
-#ifndef _WIN32
+#ifdef HAVE_X11
# include <X11/Xlib.h>
#endif