Skip to content
Snippets Groups Projects
bootstrap.sh 784 B
Newer Older
#!/bin/sh

check_for_app() {
	$1 --version 2>&1 >/dev/null
	if [ $? != 0 ]
	then
		echo "Please install $1 and run bootstrap.sh again!"
		exit 1
	fi
}

uname -s | grep -q FreeBSD
if [ $? = 0 ]
then
Russell Bryant's avatar
Russell Bryant committed
	check_for_app autoconf260
	check_for_app autoheader260
	echo "Generating the configure script ..."
Russell Bryant's avatar
Russell Bryant committed
	autoconf260
	autoheader260
	automake19 --add-missing --copy 2>/dev/null
else
Russell Bryant's avatar
Russell Bryant committed
	AUTOCONF_VERSION=2.60
Russell Bryant's avatar
Russell Bryant committed
	AUTOMAKE_VERSION=1.9
	export AUTOCONF_VERSION
	export AUTOMAKE_VERSION

	check_for_app autoconf
	check_for_app autoheader
	check_for_app automake
	echo "Generating the configure script ..."
	aclocal 2>/dev/null
	autoconf
	autoheader
	automake --add-missing --copy 2>/dev/null
fi