Mercurial > sdl-ios-xcode
comparison configure.in @ 5045:1cee937d9fcc
Nobody has stepped up to maintain a framebuffer console driver. Bye bye! :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 19 Jan 2011 22:18:45 -0800 |
parents | 3ce345cc46f8 |
children | edaf3e364a05 |
comparison
equal
deleted
inserted
replaced
5044:4913042e8572 | 5045:1cee937d9fcc |
---|---|
1418 have_video=yes | 1418 have_video=yes |
1419 fi | 1419 fi |
1420 fi | 1420 fi |
1421 } | 1421 } |
1422 | 1422 |
1423 dnl Find the framebuffer console includes | |
1424 CheckFBCON() | |
1425 { | |
1426 AC_ARG_ENABLE(video-fbcon, | |
1427 AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]), | |
1428 , enable_video_fbcon=no) | |
1429 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then | |
1430 AC_MSG_CHECKING(for framebuffer console support) | |
1431 video_fbcon=no | |
1432 AC_TRY_COMPILE([ | |
1433 #include <linux/fb.h> | |
1434 #include <linux/kd.h> | |
1435 #include <linux/keyboard.h> | |
1436 ],[ | |
1437 ],[ | |
1438 video_fbcon=yes | |
1439 ]) | |
1440 AC_MSG_RESULT($video_fbcon) | |
1441 if test x$video_fbcon = xyes; then | |
1442 AC_CHECK_FUNCS(getpagesize) | |
1443 AC_DEFINE(SDL_VIDEO_DRIVER_FBCON) | |
1444 SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c" | |
1445 have_video=yes | |
1446 fi | |
1447 fi | |
1448 } | |
1449 | |
1450 dnl Find DirectFB | 1423 dnl Find DirectFB |
1451 CheckDirectFB() | 1424 CheckDirectFB() |
1452 { | 1425 { |
1453 AC_ARG_ENABLE(video-directfb, | 1426 AC_ARG_ENABLE(video-directfb, |
1454 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]), | 1427 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]), |
2298 CheckPulseAudio | 2271 CheckPulseAudio |
2299 CheckARTSC | 2272 CheckARTSC |
2300 CheckESD | 2273 CheckESD |
2301 CheckNAS | 2274 CheckNAS |
2302 CheckX11 | 2275 CheckX11 |
2303 CheckFBCON | |
2304 CheckDirectFB | 2276 CheckDirectFB |
2305 CheckFusionSound | 2277 CheckFusionSound |
2306 CheckPS3 | 2278 CheckPS3 |
2307 CheckSVGA | 2279 CheckSVGA |
2308 CheckOpenGLX11 | 2280 CheckOpenGLX11 |