Test for XIM support in gdk added, relevant code for window.cpp follows this

evening.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder 1999-12-07 15:06:51 +00:00
parent 00655497da
commit 7799a2d76f
2 changed files with 8 additions and 1 deletions

View File

@ -1524,6 +1524,10 @@ if test "$wxUSE_GTK" = 1; then
UNIXOBJS="\$(UNIX_OBJS)" UNIXOBJS="\$(UNIX_OBJS)"
UNIXDEPS="\$(UNIX_DEPS)" UNIXDEPS="\$(UNIX_DEPS)"
GUIDIST=GTK_DIST GUIDIST=GTK_DIST
dnl test for XIM support in libgdk
AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_GDK_XIM))
fi fi
if test "$wxUSE_WINE" = 1; then if test "$wxUSE_WINE" = 1; then

View File

@ -1,4 +1,4 @@
G
/* This define (__WX_SETUP_H__) is used both to insure setup.h is included /* This define (__WX_SETUP_H__) is used both to insure setup.h is included
* only once and to indicate that we are building using configure. */ * only once and to indicate that we are building using configure. */
#ifndef __WX_SETUP_H__ #ifndef __WX_SETUP_H__
@ -734,4 +734,7 @@
/* Define if you have the <wcstr.h> header file. */ /* Define if you have the <wcstr.h> header file. */
#undef HAVE_WCSTR_H #undef HAVE_WCSTR_H
/* Define this if you are using gtk and gdk contains support for X11R6 XIM */
#undef HAVE_GDK_XIM
#endif /* __WX_SETUP_H__ */ #endif /* __WX_SETUP_H__ */