diff options
author | Johannes Hofmann <johannes.hofmann@gmx.de> | 2016-03-05 19:50:33 +0100 |
---|---|---|
committer | Johannes Hofmann <johannes.hofmann@gmx.de> | 2016-03-05 19:50:33 +0100 |
commit | a15e89ad0fe91c64079a437e88c456b876578d60 (patch) | |
tree | bc8d369f03a68ffa34ae947df37fdebd574fc9b8 | |
parent | 282faa039e4ee583aec865a72bb7a88cf3fa6a82 (diff) |
move include of FL/x.H under #ifdef X_PROTOCOL
This fixes compilation on Mac OS.
reported-by: Yves de Champlain
-rw-r--r-- | src/xembed.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xembed.cc b/src/xembed.cc index 88494495..53ea53c7 100644 --- a/src/xembed.cc +++ b/src/xembed.cc @@ -15,11 +15,11 @@ #define FL_INTERNALS #include <FL/Fl_Window.H> #include <FL/Fl.H> -#include <FL/x.H> #include "xembed.hh" #ifdef X_PROTOCOL +#include <FL/x.H> typedef enum { XEMBED_EMBEDDED_NOTIFY = 0, |