Mercurial > sdl-ios-xcode
comparison configure.in @ 3678:8e961ef35d4b
Fixed bug #930
The PS2 video driver is obsolete and not going to be updated unless someone wants to maintain it.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 18 Jan 2010 14:27:30 +0000 |
parents | 336f3df1578d |
children | be6fe5f0b1db |
comparison
equal
deleted
inserted
replaced
3677:cec9ea711294 | 3678:8e961ef35d4b |
---|---|
1436 have_audio=yes | 1436 have_audio=yes |
1437 fi | 1437 fi |
1438 fi | 1438 fi |
1439 } | 1439 } |
1440 | 1440 |
1441 dnl See if we're running on PlayStation 2 hardware | |
1442 CheckPS2GS() | |
1443 { | |
1444 AC_ARG_ENABLE(video-ps2gs, | |
1445 AC_HELP_STRING([--enable-video-ps2gs], [use PlayStation 2 GS video driver [[default=no]]]), | |
1446 , enable_video_ps2gs=no) | |
1447 if test x$enable_video = xyes -a x$enable_video_ps2gs = xyes; then | |
1448 AC_MSG_CHECKING(for PlayStation 2 GS support) | |
1449 video_ps2gs=no | |
1450 AC_TRY_COMPILE([ | |
1451 #include <linux/ps2/dev.h> | |
1452 #include <linux/ps2/gs.h> | |
1453 ],[ | |
1454 ],[ | |
1455 video_ps2gs=yes | |
1456 ]) | |
1457 AC_MSG_RESULT($video_ps2gs) | |
1458 if test x$video_ps2gs = xyes; then | |
1459 AC_DEFINE(SDL_VIDEO_DRIVER_PS2GS) | |
1460 SOURCES="$SOURCES $srcdir/src/video/ps2gs/*.c" | |
1461 have_video=yes | |
1462 fi | |
1463 fi | |
1464 } | |
1465 | |
1466 dnl See if we're running on PlayStation 3 Cell hardware | 1441 dnl See if we're running on PlayStation 3 Cell hardware |
1467 CheckPS3() | 1442 CheckPS3() |
1468 { | 1443 { |
1469 AC_ARG_ENABLE(video-ps3, | 1444 AC_ARG_ENABLE(video-ps3, |
1470 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]), | 1445 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]), |
2231 CheckNAS | 2206 CheckNAS |
2232 CheckX11 | 2207 CheckX11 |
2233 CheckFBCON | 2208 CheckFBCON |
2234 CheckDirectFB | 2209 CheckDirectFB |
2235 CheckFusionSound | 2210 CheckFusionSound |
2236 CheckPS2GS | |
2237 CheckPS3 | 2211 CheckPS3 |
2238 CheckSVGA | 2212 CheckSVGA |
2239 CheckOpenGLX11 | 2213 CheckOpenGLX11 |
2240 CheckInputEvents | 2214 CheckInputEvents |
2241 CheckTslib | 2215 CheckTslib |