Rev for 0.5.1, disable -fbdev by default (use --with-fbdev to enable)

This commit is contained in:
Jeff Teunissen 2001-06-20 19:52:13 +00:00
parent 226b40483d
commit 2eefacd6f9
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ AC_VALIDATE_CACHED_SYSTEM_TUPLE(
dnl This is the only place where the package version appears
AM_INIT_AUTOMAKE(quakeforge, 0.5.0)
AM_INIT_AUTOMAKE(quakeforge, 0.5.1)
dnl Define the proper name and extra version numbers for package
PROGRAM=QuakeForge
@ -376,7 +376,7 @@ dnl Checks for Linux FBDev support
AC_ARG_WITH(fbdev,
[ --with-fbdev use Linux framebuffer device],
HAVE_FBDEV=$withval, HAVE_FBDEV=auto)
if test "x$HAVE_FBDEV" != xno; then
if test "x$HAVE_FBDEV" = xyes; then
dnl We should still be able to compile it even if
dnl there is no fbdev support in the running kernel
AC_CHECK_HEADERS(linux/fb.h, HAVE_FBDEV=yes, HAVE_FBDEV=no)

View file

@ -30,7 +30,7 @@
/* Version strings */
#define PACKAGE "quakeforge"
#define PROGRAM "QuakeForge"
#define VERSION "0.5.0"
#define VERSION "0.5.1"
#define QW_VERSION "2.40"
#define QW_QSG_VERSION "2.0"