You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
617 B
32 lines
617 B
#!/bin/sh
|
|
# Usage: sh -x ./autogen.sh
|
|
|
|
######################################################################
|
|
### announce build tool versions
|
|
echo ""
|
|
autoconf --version
|
|
echo ""
|
|
automake --version
|
|
echo ""
|
|
|
|
# Typical MacOS X installations rename 'libtoolize' to 'glibtoolize', so
|
|
# adjust to that.
|
|
if test "`uname -s`" = "Darwin"; then
|
|
glibtoolize --version
|
|
else
|
|
libtoolize --version
|
|
fi
|
|
|
|
echo ""
|
|
${M4:-m4} --version
|
|
echo ""
|
|
flex --version
|
|
echo ""
|
|
|
|
######################################################################
|
|
### update infrastructure
|
|
|
|
autoreconf -i --force --verbose
|
|
|
|
echo "Now run configure and make."
|