From 7dca7e8e2e8fc25136ab96305a14ef06b440e6dd Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 10 Oct 2010 10:05:01 +0900 Subject: [PATCH] Doc/boostrap tweaks. Mention git instead of subversion, add libsamplerate to the requirements and it turns out autoconf 2.65 is good enough. --- INSTALL | 4 ++-- bootstrap | 4 ++-- configure.ac | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL b/INSTALL index 1cb0ae732..f4158b5ce 100644 --- a/INSTALL +++ b/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) diff --git a/bootstrap b/bootstrap index 569b84253..6178ee1c0 100755 --- a/bootstrap +++ b/bootstrap @@ -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 diff --git a/configure.ac b/configure.ac index 912590416..643aee1a8 100644 --- a/configure.ac +++ b/configure.ac @@ -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])