mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Disable svga support for now.
It is suffering some bitrot and I don't feel like fixing it right now, but it causes problems for people trying to build QF. This should be ok because it's one of those "if uncertain, say no" things.
This commit is contained in:
parent
4e7e7c3ab0
commit
7137783e47
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ dnl Checks for SVGALib support
|
|||
AC_ARG_WITH(svga,
|
||||
[ --with-svga=DIR use SVGALib found in DIR],
|
||||
HAVE_SVGA=$withval, HAVE_SVGA=auto)
|
||||
if test "x$HAVE_SVGA" != xno; then
|
||||
if test "x$HAVE_SVGA" != xno -a "x$HAVE_SVGA" != xauto; then
|
||||
if test "x$HAVE_SVGA" != xauto; then
|
||||
SVGA_CFLAGS="$SVGA_CFLAGS -I$withval/include"
|
||||
SVGA_LIBS="$SVGA_LIBS -L$withval/lib"
|
||||
|
|
Loading…
Reference in a new issue