XDeviceMotionEvent on ubuntu 7.10

I just got a new svn tree of SDL 1.3.

I configured, and started building – I see:

gcc -g -O2 -I./include -D_GNU_SOURCE=1 -mmmx -m3dnow -msse -msse2 -fvisibility=hidden -I/usr/include/kde/artsc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DXTHREADS -D_REENTRANT -DHAVE_LINUX_VERSION_H -c ./src/video/x11/SDL_x11events.c -fPIC -DPIC -o build/.libs/SDL_x11events.o
./src/video/x11/SDL_x11events.c: In function ‘X11_DispatchEvent’:
./src/video/x11/SDL_x11events.c:94: error: ‘XDeviceMotionEvent’ undeclared (first use in this function)
./src/video/x11/SDL_x11events.c:94: error: (Each undeclared identifier is reported only once

XDeviceMotionEvent is defined in X11/extentions/XInput.h

This file is wrapped in
SDL_x11video.h by
#if SDL_VIDEO_DRIVER_X11_XINPUT
#include <X11/extensions/XInput.h>
#endif

and my configure has

/* #undef SDL_VIDEO_DRIVER_X11_XINPUT */

marty

and my configure has

/* #undef SDL_VIDEO_DRIVER_X11_XINPUT */

Can you email config.log to me directly (not the mailing list: it’s a
big file)? For some reason, the configure script thinks you don’t have
XInput, and the trunk currently depends on you having it (we’re fixing
this issue).

–ryan.