From c9b817f5bb8ef2060aa36ebb5b089cf249c5170b Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Fri, 5 Oct 2018 22:05:08 +0200 Subject: add --disable-xembed configure option Add option to disable XEmbed support. This can be useful to avoid compilation issues on non-X11 systems. --- src/xembed.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/xembed.cc b/src/xembed.cc index 0780148a..eee40e2a 100644 --- a/src/xembed.cc +++ b/src/xembed.cc @@ -18,7 +18,7 @@ #include "xembed.hh" -#if !(defined(WIN32) || defined(__APPLE__)) +#if !( defined(DISABLE_XEMBED) || defined(WIN32) || defined(__APPLE__) ) #include typedef enum { -- cgit v1.2.3