summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-08-12 12:48:16 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-08-12 12:48:16 +0000
commit47247ac4e2f0860a34106f4b69049d91003ced29 (patch)
tree71f3675454dd8a1aba506dd67eafabd6f154f74f
parentd4f8ecd0b1e4c8a2ba6949f83c474eb4dcf9a5be (diff)
downloadmana-client-47247ac4e2f0860a34106f4b69049d91003ced29.tar.gz
mana-client-47247ac4e2f0860a34106f4b69049d91003ced29.tar.bz2
mana-client-47247ac4e2f0860a34106f4b69049d91003ced29.tar.xz
mana-client-47247ac4e2f0860a34106f4b69049d91003ced29.zip
Removed autogen.sh and tell people in the INSTALL file to run 'autoreconf -i'
instead. Please tell me if this doesn't work for you for some reason.
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL3
-rwxr-xr-xautogen.sh14
3 files changed, 7 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 4df1570c..aa702680 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-12 Bjørn Lindeijer <bjorn@lindeijer.nl>
+
+ * INSTALL, autogen.sh: Removed autogen.sh and tell people in the
+ INSTALL file to run 'autoreconf -i' instead.
+
2008-07-24 David Athay <ko2fan@gmail.com>
* src/game.cpp, src/net/protocol.h, src/net/npchandler.cpp: Reverted
diff --git a/INSTALL b/INSTALL
index babecc1c..cfe6804c 100644
--- a/INSTALL
+++ b/INSTALL
@@ -43,7 +43,8 @@ you to figure this out.
==========================================
1) Go to the directory you have extracted the source to.
-2) If you checked out from SVN, run "./autogen.sh" to generate configure.
+2) If you checked out from SVN, run "autoreconf -i" to generate configure and
+ install any missing auxiliary files.
3) Run "./configure"
4) Run "make"
5) Run "make install" as root
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 69533296..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-echo "Generating build information using autopoint, aclocal, autoheader, automake, and autoconf."
-echo
-
-# Regerate configuration files
-autopoint
-aclocal
-autoheader
-automake --gnu --add-missing --copy
-autoconf
-
-echo
-echo "Now you are ready to run ./configure"