[Toxine-cvs] CVS: toxine acconfig.h,1.1.1.1,1.2 configure.in,1.7,1.8
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2002-06-21 13:15:07
|
Update of /cvsroot/toxine/toxine In directory usw-pr-cvs1:/tmp/cvs-serv1429 Modified Files: acconfig.h configure.in Log Message: Fixed missposition (X/Y) report on fullscreen->window mode. Backport fake events (no more kill xscreensaver/deactivate X ScreenSaver. Index: acconfig.h =================================================================== RCS file: /cvsroot/toxine/toxine/acconfig.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- acconfig.h 13 May 2002 20:45:35 -0000 1.1.1.1 +++ acconfig.h 21 Jun 2002 13:14:59 -0000 1.2 @@ -20,6 +20,9 @@ /* Define this if you have X11R6 installed */ #undef HAVE_X11 +/* Define this if you have libXtst installed */ +#undef HAVE_XTESTEXTENSION + /* Define this if you have GNU getopt_long() implemented */ #undef HAVE_GETOPT_LONG @@ -68,8 +71,6 @@ /* Define if you have the lstat function. */ #undef HAVE_LSTAT /* End of readline section */ - -#undef HAVE_DPMS @BOTTOM@ #endif Index: configure.in =================================================================== RCS file: /cvsroot/toxine/toxine/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- configure.in 3 Jun 2002 21:26:10 -0000 1.7 +++ configure.in 21 Jun 2002 13:14:59 -0000 1.8 @@ -132,16 +132,14 @@ fi dnl -dnl Check for DPMS location +dnl XTest Extension dnl -AC_CHECK_LIB(Xext, DPMSQueryExtension, - DPMS_LIBS="" - AC_DEFINE(HAVE_DPMS), - AC_CHECK_LIB(Xdpms, DPMSQueryExtension, - DPMS_LIBS="-lXdpms" - AC_DEFINE(HAVE_DPMS),, $X_LIBS), - $X_LIBS) -AC_SUBST(DPMS_LIBS) +AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, + XTEST_LIBS="-lXtst" + AC_DEFINE(HAVE_XTESTEXTENSION) + ac_have_xtest="yes",, $X_LIBS $X_PRE_LIBS -lXext $X_EXTRA_LIBS) +AC_SUBST(XTEST_LIBS) +AM_CONDITIONAL(HAVE_XTESTEXTENSION, test x$ac_have_xtest = "xyes") AC_CHECK_HEADER(stdarg.h, AC_DEFINE(HAVE_STDARGS)) AC_CHECK_HEADERS(string.h strings.h alloca.h) |