diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-09 10:58:53 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-09 10:58:53 (GMT) |
commit | 7e6a8b0a249f5e75c648e579156e3b30c8866eeb (patch) | |
tree | 25062bf113483fcb6c5df2a04eccfb0ea391e471 | |
parent | 79c47400ba2c83d6e7b6213f5d2d79994796a2fb (diff) | |
download | tk-7e6a8b0a249f5e75c648e579156e3b30c8866eeb.zip tk-7e6a8b0a249f5e75c648e579156e3b30c8866eeb.tar.gz tk-7e6a8b0a249f5e75c648e579156e3b30c8866eeb.tar.bz2 |
Workaround for possible build problem on Windows/MacOSX: Some (older) versions of X11/Xutil.h have a wrong signature for XOffsetRegion/XUnionRegion, so move them out of the way temporarly.
-rw-r--r-- | generic/tkIntXlibDecls.h | 6 | ||||
-rw-r--r-- | macosx/tkMacOSXPort.h | 1 | ||||
-rw-r--r-- | xlib/xutil.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/generic/tkIntXlibDecls.h b/generic/tkIntXlibDecls.h index 8e7d650..de44068 100644 --- a/generic/tkIntXlibDecls.h +++ b/generic/tkIntXlibDecls.h @@ -23,7 +23,13 @@ # include <tcl.h> #endif +/* Some (older) versions of X11/Xutil.h have a wrong signature of those + two functions, so move them out of the way temporarly. */ +#define XOffsetRegion _XOffsetRegion +#define XUnionRegion _XUnionRegion #include "X11/Xutil.h" +#undef XOffsetRegion +#undef XUnionRegion #ifdef BUILD_tk #undef TCL_STORAGE_CLASS diff --git a/macosx/tkMacOSXPort.h b/macosx/tkMacOSXPort.h index 0c3b347..bd48bd5 100644 --- a/macosx/tkMacOSXPort.h +++ b/macosx/tkMacOSXPort.h @@ -53,7 +53,6 @@ #include <X11/Xatom.h> #include <X11/Xfuncproto.h> #include <X11/Xutil.h> -#include "tkIntXlibDecls.h" /* * The following macro defines the type of the mask arguments to diff --git a/xlib/xutil.c b/xlib/xutil.c index 0514d7a..7b69e18 100644 --- a/xlib/xutil.c +++ b/xlib/xutil.c @@ -12,6 +12,7 @@ #include <stdlib.h> #include <tk.h> +#include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/Xatom.h> |