diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-01-23 17:28:59 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-01-23 17:28:59 +0000 |
commit | 0b25e183026f1557e44ac0d26e455b1ba3060e38 (patch) | |
tree | 721336923d4c6139a71e77bed3294b72f9ba2cd2 /devel/sdl12/Makefile | |
parent | 24e6494bc3c9e22c32522bb9eedc75040228c85b (diff) | |
download | FreeBSD-ports-0b25e183026f1557e44ac0d26e455b1ba3060e38.zip FreeBSD-ports-0b25e183026f1557e44ac0d26e455b1ba3060e38.tar.gz |
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/sdl12/Makefile')
-rw-r--r-- | devel/sdl12/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/sdl12/Makefile b/devel/sdl12/Makefile index 5d8df2c..a2f7a18 100644 --- a/devel/sdl12/Makefile +++ b/devel/sdl12/Makefile @@ -7,7 +7,7 @@ PORTNAME= sdl-devel PORTVERSION= 1.1.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.libsdl.org/release/ \ http://www.devolution.com/~slouken/SDL/release/ @@ -25,7 +25,8 @@ INSTALLS_SHLIB= yes USE_LIBTOOL= yes CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" CONFIGURE_ARGS= --enable-video-aalib \ - --enable-video-svga + --enable-video-svga \ + --enable-video-vgl CFLAGS+= -D_THREAD_SAFE |