aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-03-19 13:26:18 +0000
committerKalle Wallin <kaw@linux.se>2004-03-19 13:26:18 +0000
commita0592c8cc08b802f86061c88dc6862352b6c3e94 (patch)
treefeda87ba55a404023e62b8d744e2667dccebdc95 /bootstrap.sh
downloadmpd-a0592c8cc08b802f86061c88dc6862352b6c3e94.tar.gz
mpd-a0592c8cc08b802f86061c88dc6862352b6c3e94.tar.xz
mpd-a0592c8cc08b802f86061c88dc6862352b6c3e94.zip
Imported ncmpc (mpc-ncures).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@292 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh54
1 files changed, 54 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
new file mode 100755
index 000000000..8d47e6127
--- /dev/null
+++ b/bootstrap.sh
@@ -0,0 +1,54 @@
+#! /bin/sh
+# Check Autoconf version
+if [ -x `which autoconf` ]; then
+ AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//'`
+ AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
+ AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
+
+ if [ "$AC_VER_MAJOR" -lt "2" ]; then
+ echo "Autoconf 2.13 or greater needed to build configure."
+ exit 1
+ fi
+
+ if [ "$AC_VER_MINOR" -lt "13" ]; then
+ echo "Autoconf 2.13 or greater needed to build configure."
+ exit 1
+ fi
+
+ if [ "$AC_VER_MINOR" -lt "50" ]; then
+ if [ ! -e configure.in ]; then
+ ln -s configure.ac configure.in
+ fi
+ echo "If you see some warnings about cross-compiling, don't worry; this is normal."
+ else
+ echo "rm -f configure.in ?"
+ fi
+else
+ echo Autoconf not found. AlsaPlayer CVS requires autoconf to bootstrap itself.
+ exit 1
+fi
+
+run_cmd() {
+ echo running $* ...
+ if ! $*; then
+ echo failed!
+ exit 1
+ fi
+}
+
+# Check if /usr/local/share/aclocal exists
+if [ -d /usr/local/share/aclocal ]; then
+ ACLOCAL_INCLUDE="$ACLOCAL_INCLUDE -I /usr/local/share/aclocal"
+fi
+
+if [ -d m4 ] ; then
+ run_cmd cat m4/*.m4 > acinclude.m4
+fi
+run_cmd aclocal $ACLOCAL_INCLUDE
+run_cmd autoheader
+run_cmd libtoolize --automake
+run_cmd automake --add-missing
+run_cmd autoconf
+echo
+echo "Now run './configure'"
+echo