diff options
author | Tor Lillqvist <tml@novell.com> | 2008-08-03 23:36:17 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-08-03 23:36:17 +0000 |
commit | 963ee0de5e9cce3e51d810c8ac7219aa44daaa44 (patch) | |
tree | 3667268376382333fca081c2cb5e0e7832b6e3c9 /configure.in | |
parent | 6ecaa61a1c58ad1f20eb5873dfc36464c19ee739 (diff) | |
download | gtk+-963ee0de5e9cce3e51d810c8ac7219aa44daaa44.tar.gz |
Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
2008-08-04 Tor Lillqvist <tml@novell.com>
Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
* configure.in: On Win64, define GDK_NATIVE_WINDOW_POINTER.
* gdk/gdkconfig.h.win32: Ditto here.
svn path=/trunk/; revision=20956
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 813c489528..f17a9d41ae 100644 --- a/configure.in +++ b/configure.in @@ -1978,6 +1978,10 @@ if test "x$gdktarget" = "xx11" ; then #define GDK_WINDOWING_X11' elif test "x$gdktarget" = "xwin32" ; then gdk_windowing=' +#ifdef _WIN64 +# define GDK_NATIVE_WINDOW_POINTER +#endif + #define GDK_WINDOWING_WIN32' elif test "x$gdktarget" = "xquartz" ; then gdk_windowing=' |