mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
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:
parent
f666f8d27a
commit
7dca7e8e2e
3 changed files with 5 additions and 5 deletions
4
INSTALL
4
INSTALL
|
@ -11,9 +11,9 @@ UNIX users: because of the diversity of machines QuakeForge runs on, we do not p
|
|||
* GNU flex
|
||||
* GNU make (BSD make doesn't like some constructs used)
|
||||
* C compiler and preprocessor (gcc and cpp recommended)
|
||||
* libsamplerate
|
||||
The following are recommended:
|
||||
* subversion (highly recommended for staying up to date with current
|
||||
changes)
|
||||
* git (highly recommended for staying up to date with current changes)
|
||||
* zlib devel (highly recommended for compressed file and download support)
|
||||
* Ogg Vorbis libs (for compressed sound effects support)
|
||||
* X11 devel (for X11-based clients: software and OpenGL)
|
||||
|
|
|
@ -72,8 +72,8 @@ if test -n "$ac" ; then
|
|||
errors="Autoconf 2.67 or greater needed to build configure.\n$errors"
|
||||
fi
|
||||
|
||||
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "67" ; then
|
||||
errors="Autoconf 2.67 or greater needed to build configure.\n$errors"
|
||||
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "65" ; then
|
||||
errors="Autoconf 2.65 or greater needed to build configure.\n$errors"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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
|
||||
AC_INIT([QuakeForge], [git-master])
|
||||
|
|
Loading…
Reference in a new issue