comparison configure.in @ 433:706de3956894

Added initial support for PicoGUI (thanks Micah!)
author Sam Lantinga <slouken@libsdl.org>
date Thu, 01 Aug 2002 23:24:13 +0000
parents 1338c24e30cb
children 3691cc3e14b3
comparison
equal deleted inserted replaced
432:80a35d43a58f 433:706de3956894
1468 fi 1468 fi
1469 AC_LANG_C 1469 AC_LANG_C
1470 fi 1470 fi
1471 } 1471 }
1472 1472
1473 dnl Set up the PicoGUI video driver if enabled
1474 CheckPicoGUI()
1475 {
1476 AC_ARG_ENABLE(video-picogui,
1477 [ --enable-video-picogui use PicoGUI video driver [default=no]],
1478 , enable_video_picogui=no)
1479 if test x$enable_video = xyes -a x$enable_video_picogui = xyes; then
1480 AC_MSG_CHECKING(for PicoGUI support)
1481 video_picogui=no
1482 AC_TRY_COMPILE([
1483 #include <picogui.h>
1484 ],[
1485 ],[
1486 video_picogui=yes
1487 ])
1488 AC_MSG_RESULT($video_picogui)
1489 if test x$video_picogui = xyes; then
1490 SDL_LIBS="$SDL_LIBS -lpgui"
1491 CFLAGS="$CFLAGS -DENABLE_PICOGUI"
1492 VIDEO_SUBDIRS="$VIDEO_SUBDIRS picogui"
1493 VIDEO_DRIVERS="$VIDEO_DRIVERS picogui/libvideo_picogui.la"
1494 fi
1495 AC_LANG_C
1496 fi
1497 }
1498
1473 dnl Set up the Mac toolbox video driver for Mac OS 7-9 1499 dnl Set up the Mac toolbox video driver for Mac OS 7-9
1474 CheckTOOLBOX() 1500 CheckTOOLBOX()
1475 { 1501 {
1476 VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon" 1502 VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon"
1477 VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la" 1503 VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la"
1674 CheckPS2GS 1700 CheckPS2GS
1675 CheckGGI 1701 CheckGGI
1676 CheckSVGA 1702 CheckSVGA
1677 CheckAAlib 1703 CheckAAlib
1678 CheckQtopia 1704 CheckQtopia
1705 CheckPicoGUI
1679 CheckOpenGL 1706 CheckOpenGL
1680 CheckInputEvents 1707 CheckInputEvents
1681 CheckPTHREAD 1708 CheckPTHREAD
1682 # Set up files for the main() stub 1709 # Set up files for the main() stub
1683 if test "x$video_qtopia" = "xyes"; then 1710 if test "x$video_qtopia" = "xyes"; then
2600 src/video/dummy/Makefile 2627 src/video/dummy/Makefile
2601 src/video/ataricommon/Makefile 2628 src/video/ataricommon/Makefile
2602 src/video/xbios/Makefile 2629 src/video/xbios/Makefile
2603 src/video/gem/Makefile 2630 src/video/gem/Makefile
2604 src/video/qtopia/Makefile 2631 src/video/qtopia/Makefile
2632 src/video/picogui/Makefile
2605 src/events/Makefile 2633 src/events/Makefile
2606 src/joystick/Makefile 2634 src/joystick/Makefile
2607 src/joystick/amigaos/Makefile 2635 src/joystick/amigaos/Makefile
2608 src/joystick/beos/Makefile 2636 src/joystick/beos/Makefile
2609 src/joystick/bsd/Makefile 2637 src/joystick/bsd/Makefile