Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed bug #930
Browse files Browse the repository at this point in the history
The PS2 video driver is obsolete and not going to be updated unless someone wants to maintain it.
  • Loading branch information
slouken committed Jan 18, 2010
1 parent 62c795a commit d7e5d64
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 2,808 deletions.
26 changes: 0 additions & 26 deletions configure.in
Expand Up @@ -1438,31 +1438,6 @@ AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audi
fi
}

dnl See if we're running on PlayStation 2 hardware
CheckPS2GS()
{
AC_ARG_ENABLE(video-ps2gs,
AC_HELP_STRING([--enable-video-ps2gs], [use PlayStation 2 GS video driver [[default=no]]]),
, enable_video_ps2gs=no)
if test x$enable_video = xyes -a x$enable_video_ps2gs = xyes; then
AC_MSG_CHECKING(for PlayStation 2 GS support)
video_ps2gs=no
AC_TRY_COMPILE([
#include <linux/ps2/dev.h>
#include <linux/ps2/gs.h>
],[
],[
video_ps2gs=yes
])
AC_MSG_RESULT($video_ps2gs)
if test x$video_ps2gs = xyes; then
AC_DEFINE(SDL_VIDEO_DRIVER_PS2GS)
SOURCES="$SOURCES $srcdir/src/video/ps2gs/*.c"
have_video=yes
fi
fi
}

dnl See if we're running on PlayStation 3 Cell hardware
CheckPS3()
{
Expand Down Expand Up @@ -2233,7 +2208,6 @@ case "$host" in
CheckFBCON
CheckDirectFB
CheckFusionSound
CheckPS2GS
CheckPS3
CheckSVGA
CheckOpenGLX11
Expand Down
1 change: 0 additions & 1 deletion include/SDL_config.h.in
Expand Up @@ -262,7 +262,6 @@
#undef SDL_VIDEO_DRIVER_NDS
#undef SDL_VIDEO_DRIVER_PHOTON
#undef SDL_VIDEO_DRIVER_QNXGF
#undef SDL_VIDEO_DRIVER_PS2GS
#undef SDL_VIDEO_DRIVER_PS3
#undef SDL_VIDEO_DRIVER_RISCOS
#undef SDL_VIDEO_DRIVER_SVGALIB
Expand Down
3 changes: 0 additions & 3 deletions src/video/SDL_sysvideo.h
Expand Up @@ -373,9 +373,6 @@ extern VideoBootStrap FBCON_bootstrap;
#if SDL_VIDEO_DRIVER_DIRECTFB
extern VideoBootStrap DirectFB_bootstrap;
#endif
#if SDL_VIDEO_DRIVER_PS2GS
extern VideoBootStrap PS2GS_bootstrap;
#endif
#if SDL_VIDEO_DRIVER_PS3
extern VideoBootStrap PS3_bootstrap;
#endif
Expand Down
3 changes: 0 additions & 3 deletions src/video/SDL_video.c
Expand Up @@ -61,9 +61,6 @@ static VideoBootStrap *bootstrap[] = {
#if SDL_VIDEO_DRIVER_DIRECTFB
&DirectFB_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_PS2GS
&PS2GS_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_PS3
&PS3_bootstrap,
#endif
Expand Down

0 comments on commit d7e5d64

Please sign in to comment.