From: <pa...@us...> - 2003-10-09 22:45:41
|
Update of /cvsroot/fuse-emulator/fuse In directory sc8-pr-cvs1:/tmp/cvs-serv9680 Modified Files: configure.in Log Message: Iif using SDL, use its joystick code by default. Change BYTE etc in sdljoystick.c to libspectrum_byte. Add missing ; to configure.in (Darren). Index: configure.in =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/configure.in,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -d -r1.120 -r1.121 *** configure.in 8 Oct 2003 17:15:31 -0000 1.120 --- configure.in 9 Oct 2003 22:45:36 -0000 1.121 *************** *** 299,303 **** dnl (svgalib appears to dislike switched joysticks on the parallel port...) case "$UI" in ! svga) dnl Libraries such as svgalib provide their own joystick code. AC_MSG_CHECKING([whether to use $UI's joystick support]) --- 299,303 ---- dnl (svgalib appears to dislike switched joysticks on the parallel port...) case "$UI" in ! svga|sdl) dnl Libraries such as svgalib provide their own joystick code. AC_MSG_CHECKING([whether to use $UI's joystick support]) *************** *** 321,325 **** dnl Look for libjsw. If missing, use QAOP<space>. AC_CHECK_HEADERS(jsw.h, ! LIBS="$LIBS -ljsw" AC_DEFINE(USE_JOYSTICK), AC_MSG_WARN(jsw.h not found - joystick support disabled)) fi --- 321,325 ---- dnl Look for libjsw. If missing, use QAOP<space>. AC_CHECK_HEADERS(jsw.h, ! LIBS="$LIBS -ljsw"; AC_DEFINE(USE_JOYSTICK), AC_MSG_WARN(jsw.h not found - joystick support disabled)) fi |