diff options
| author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-01-23 17:28:59 +0000 |
|---|---|---|
| committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-01-23 17:28:59 +0000 |
| commit | 1f53fed603b26f258dc43d2780f88ad67adaa5f9 (patch) | |
| tree | 96bb67eb0d0260f05c194701d852a56269e6e392 /devel/sdl-devel/files/patch-src_video_SDL__video.c | |
| parent | 7cacb2c79a256e6ffad4c27d5d2b8319ecea5040 (diff) | |
Add FreeBSD native VGL driver. Right now it is work in progress and to activate
and test it you need the following (5-CURRENT only, BTW):
- fetch a patch for libvgl: http://people.freebsd.org/~sobomax/libvgl.patch,
apply it, recompile/reinstall libvgl;
- recompile/reinstall sdl-devel (configure script automatically detects
if right version of libvgl is present);
- set environment variable SDL_VIDEODRIVER=vgl;
- ensure that you have VESA support compiled into kernel or loaded as a kld;
- fire up your favourite SDL app ;).
Diffstat (limited to 'devel/sdl-devel/files/patch-src_video_SDL__video.c')
| -rw-r--r-- | devel/sdl-devel/files/patch-src_video_SDL__video.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/sdl-devel/files/patch-src_video_SDL__video.c b/devel/sdl-devel/files/patch-src_video_SDL__video.c new file mode 100644 index 000000000000..98e603c9d132 --- /dev/null +++ b/devel/sdl-devel/files/patch-src_video_SDL__video.c @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- src/video/SDL_video.c 2001/01/21 20:11:02 1.1 ++++ src/video/SDL_video.c 2001/01/21 20:11:59 +@@ -60,6 +60,9 @@ + #ifdef ENABLE_SVGALIB + &SVGALIB_bootstrap, + #endif ++#ifdef ENABLE_VGL ++ &VGL_bootstrap, ++#endif + #ifdef ENABLE_AALIB + &AALIB_bootstrap, + #endif |
