summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>1999-08-18 01:12:47 +0000
committerMichael Jennings <mej@kainx.org>1999-08-18 01:12:47 +0000
commit661b1b9448308e0f50a4a6d131f2b3fb66c63dd4 (patch)
tree828b240bf3a9b9eb44499de1a99300ef956f0a1e /autogen.sh
parente64e1663de917283ea3c05ab928398d37ca656c7 (diff)
downloadeterm-661b1b9448308e0f50a4a6d131f2b3fb66c63dd4.tar.gz
Tue Aug 17 18:06:01 PDT 1999 Michael Jennings <mej@eterm.org>
Now that we have a fixed CVS server.... This includes the old 0.8.10 code, but it's now 0.9. It also includes a timer subsystem. SVN revision: 52
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh18
1 files changed, 16 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index c2583dc..b6e7fe7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,6 +4,8 @@
DIE=0
+echo "Generating configuration files for Eterm, please wait...."
+
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile Eterm."
@@ -32,11 +34,16 @@ if test "$DIE" -eq 1; then
exit 1
fi
+echo " libtoolize --copy --force"
libtoolize --copy --force
-aclocal $ACLOCAL_FLAGS
+echo " aclocal -I . $ACLOCAL_FLAGS"
+aclocal -I . $ACLOCAL_FLAGS
+echo " autoheader"
+autoheader
+echo " automake --add-missing"
automake --add-missing
+echo " autoconf"
autoconf
-autoheader
if [ -x config.status -a -z "$*" ]; then
./config.status --recheck
@@ -50,3 +57,10 @@ else
fi
./configure "$@"
fi
+
+if [ -f cvs.motd ]; then
+ echo "ATTENTION CVS Users!"
+ echo ""
+ cat cvs.motd
+ echo ""
+fi