comparison configure.in @ 1299:2bf9dda618e5

Corrects dynamic X11 code on Tru64 systems. Fixes Bugzilla #87.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 30 Jan 2006 18:21:44 +0000
parents 86d0d01290ea
children 0c105755b110
comparison
equal deleted inserted replaced
1298:e1b8e1b97b67 1299:2bf9dda618e5
617 case "$target" in 617 case "$target" in
618 *-*-darwin* ) 618 *-*-darwin* )
619 x11_lib='/usr/X11R6/lib/libX11.6.dylib' 619 x11_lib='/usr/X11R6/lib/libX11.6.dylib'
620 x11ext_lib='/usr/X11R6/lib/libXext.6.dylib' 620 x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
621 ;; 621 ;;
622 *-*-osf* )
623 x11_lib='libX11.so'
624 x11ext_lib='libXext.so'
625 ;;
622 *) 626 *)
623 x11_lib='libX11.so.6' 627 x11_lib='libX11.so.6'
624 x11ext_lib='libXext.so.6' 628 x11ext_lib='libXext.so.6'
625 ;; 629 ;;
626 esac 630 esac
2583 fi 2587 fi
2584 # Set up files for the timer library 2588 # Set up files for the timer library
2585 if test x$enable_timers = xyes; then 2589 if test x$enable_timers = xyes; then
2586 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) 2590 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c)
2587 fi 2591 fi
2592 # FIXME: If building without -lX11, you get the following messages.
2593 # Xlib: connection to ":0.0" refused by server
2594 # Xlib: XDM authorization key matches an existing client!
2595 # It only has to run xhost +localhost in a such case.
2596 #if test x$enable_x11_shared = xyes; then
2597 # SYSTEM_LIBS="$SYSTEM_LIBS -lX11"
2598 #fi
2588 ;; 2599 ;;
2589 *-*-qnx*) 2600 *-*-qnx*)
2590 ARCH=qnx 2601 ARCH=qnx
2591 CheckDummyVideo 2602 CheckDummyVideo
2592 CheckDiskAudio 2603 CheckDiskAudio