Doc/boostrap tweaks.

Mention git instead of subversion, add libsamplerate to the requirements
and it turns out autoconf 2.65 is good enough.
This commit is contained in:
Bill Currie 2010-10-10 10:05:01 +09:00
parent f666f8d27a
commit 7dca7e8e2e
3 changed files with 5 additions and 5 deletions

View file

@ -11,9 +11,9 @@ UNIX users: because of the diversity of machines QuakeForge runs on, we do not p
* GNU flex * GNU flex
* GNU make (BSD make doesn't like some constructs used) * GNU make (BSD make doesn't like some constructs used)
* C compiler and preprocessor (gcc and cpp recommended) * C compiler and preprocessor (gcc and cpp recommended)
* libsamplerate
The following are recommended: The following are recommended:
* subversion (highly recommended for staying up to date with current * git (highly recommended for staying up to date with current changes)
changes)
* zlib devel (highly recommended for compressed file and download support) * zlib devel (highly recommended for compressed file and download support)
* Ogg Vorbis libs (for compressed sound effects support) * Ogg Vorbis libs (for compressed sound effects support)
* X11 devel (for X11-based clients: software and OpenGL) * X11 devel (for X11-based clients: software and OpenGL)

View file

@ -72,8 +72,8 @@ if test -n "$ac" ; then
errors="Autoconf 2.67 or greater needed to build configure.\n$errors" errors="Autoconf 2.67 or greater needed to build configure.\n$errors"
fi fi
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "67" ; then if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "65" ; then
errors="Autoconf 2.67 or greater needed to build configure.\n$errors" errors="Autoconf 2.65 or greater needed to build configure.\n$errors"
fi fi
fi fi
else else

View file

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.67) AC_PREREQ(2.65)
dnl This is the only place where the package name and version appear dnl This is the only place where the package name and version appear
AC_INIT([QuakeForge], [git-master]) AC_INIT([QuakeForge], [git-master])