aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-06-20 16:02:29 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-06-20 16:02:29 +0000
commit69979eab458adba5f28eacb9812056764e6b7029 (patch)
treed8e3d9792db650c7b240f46f6830569e7ed63981
parent1bf1f3378d5c3d38e79a538157b6045def0564fe (diff)
downloadfetchmail-69979eab458adba5f28eacb9812056764e6b7029.tar.gz
fetchmail-69979eab458adba5f28eacb9812056764e6b7029.tar.bz2
fetchmail-69979eab458adba5f28eacb9812056764e6b7029.zip
Update to reflect autogen.sh.
Mention overrides that can be set in the environment. svn path=/trunk/; revision=3918
-rw-r--r--README.svn16
1 files changed, 13 insertions, 3 deletions
diff --git a/README.svn b/README.svn
index 8738af18..2d1277a4 100644
--- a/README.svn
+++ b/README.svn
@@ -15,12 +15,22 @@ The prerequisite packages are:
If you have these installed, type:
-$ rm -r -f autom4te.cache
-$ autoreconf -i -s
+$ ./autogen.sh
This will take a while and may print a lot of messages containing
"warning: unquoted definition of..." which are harmless.
+If that fails, for instance because your files are named differently,
+you can override the program names by setting the environment variables
+AUTORECONF, AUTOCONF, AUTOHEADER (these match your autoconf version)
+ACLOCAL, AUTOMAKE (to match your automake version) and finally
+AUTOPOINT (to match your gettext version).
+
+Example for FreeBSD 5-CURRENT:
+
+env AUTOCONF=autoconf259 AUTOHEADER=autoheader259 AUTORECONF=autoreconf259 \
+ ACLOCAL=aclocal18 AUTOMAKE=automake18 ./autogen.sh
+
After that, build as usual, with
$ ./configure --with-options
@@ -28,4 +38,4 @@ $ make
(become root)
# make install-strip
--- Matthias Andree, 2004-06-18
+-- Matthias Andree, 2004-06-20