temporarily disable elisp exception tests
[bpt/guile.git] / autogen.sh
CommitLineData
5d94b2fe 1#!/bin/sh
df449722 2# Usage: sh -x ./autogen.sh
5d94b2fe 3
fc4fc6f6
RB
4set -e
5
0b49b6ae 6[ -f GUILE-VERSION ] || {
3be5cdf2 7 echo "autogen.sh: run this command only at the top of guile-core."
0b49b6ae
JB
8 exit 1
9}
10
5cfbbaff
NJ
11######################################################################
12### announce build tool versions
13echo ""
14autoconf --version
15echo ""
16automake --version
17echo ""
449be2a5
LC
18
19# Typical MacOS X installations rename 'libtoolize' to 'glibtoolize', so
20# adjust to that.
21if test "`uname -s`" = "Darwin"; then
22 glibtoolize --version
23else
24 libtoolize --version
25fi
26
5cfbbaff 27echo ""
850a4c8f 28${M4:-m4} --version
5cfbbaff 29echo ""
6349a556
AW
30flex --version
31echo ""
5cfbbaff 32
3be5cdf2 33######################################################################
549d7a55 34### update infrastructure
3be5cdf2 35
95aacf7f 36autoreconf -i --force --verbose
f8aa362d 37
9e74987f 38echo "Now run configure and make."