comparison configure.in @ 1981:3f21778e7433

The GGI driver hasn't been maintained in 8 years. It's probably safe to remove. :)
author Sam Lantinga <slouken@libsdl.org>
date Thu, 10 Aug 2006 15:15:06 +0000
parents 754847f19490
children 4ddfbe55e105
comparison
equal deleted inserted replaced
1980:0e7becb566ee 1981:3f21778e7433
1151 have_video=yes 1151 have_video=yes
1152 fi 1152 fi
1153 fi 1153 fi
1154 } 1154 }
1155 1155
1156 dnl Find the GGI includes
1157 CheckGGI()
1158 {
1159 AC_ARG_ENABLE(video-ggi,
1160 AC_HELP_STRING([--enable-video-ggi], [use GGI video driver [[default=no]]]),
1161 , enable_video_ggi=no)
1162 if test x$enable_video = xyes -a x$enable_video_ggi = xyes; then
1163 AC_MSG_CHECKING(for GGI support)
1164 video_ggi=no
1165 AC_TRY_COMPILE([
1166 #include <ggi/ggi.h>
1167 #include <ggi/gii.h>
1168 ],[
1169 ],[
1170 video_ggi=yes
1171 ])
1172 AC_MSG_RESULT($video_ggi)
1173 if test x$video_ggi = xyes; then
1174 AC_DEFINE(SDL_VIDEO_DRIVER_GGI)
1175 SOURCES="$SOURCES $srcdir/src/video/ggi/*.c"
1176 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lggi -lgii -lgg"
1177 have_video=yes
1178 fi
1179 fi
1180 }
1181
1182 dnl Find the SVGAlib includes and libraries 1156 dnl Find the SVGAlib includes and libraries
1183 CheckSVGA() 1157 CheckSVGA()
1184 { 1158 {
1185 AC_ARG_ENABLE(video-svga, 1159 AC_ARG_ENABLE(video-svga,
1186 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=yes]]]), 1160 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=yes]]]),
2005 CheckX11 1979 CheckX11
2006 CheckNANOX 1980 CheckNANOX
2007 CheckFBCON 1981 CheckFBCON
2008 CheckDirectFB 1982 CheckDirectFB
2009 CheckPS2GS 1983 CheckPS2GS
2010 CheckGGI
2011 CheckSVGA 1984 CheckSVGA
2012 CheckVGL 1985 CheckVGL
2013 CheckWscons 1986 CheckWscons
2014 CheckOpenGLX11 1987 CheckOpenGLX11
2015 CheckInputEvents 1988 CheckInputEvents