collabora-online/autogen.sh

40 lines
727 B
Bash
Raw Normal View History

2016-04-12 10:09:29 +02:00
#! /bin/bash
srcdir=`dirname $0`
test -n "$srcdir" || srcdir=.
olddir=`pwd`
cd "$srcdir"
2016-04-12 10:09:29 +02:00
function failed {
cat << EOF 1>&2
Result: $1 failed
Please try running the commands from autogen.sh manually, and fix errors.
EOF
exit 1
}
if test `uname -s` = Linux; then
libtoolize || failed "libtool"
elif test `uname -s` = Darwin; then
libtoolize || glibtoolize || failed "Can't find libtoolize or glibtoolize. Use lode or install it yourself."
fi
2016-04-12 10:09:29 +02:00
aclocal || failed "aclocal"
2016-04-12 10:09:29 +02:00
autoheader || failed "autoheader"
automake --add-missing || failed "automake"
autoreconf || failed "autoreconf"
cat << EOF
Result: All went OK, please run $srcdir/configure (with the appropriate parameters) now.
2016-04-12 10:09:29 +02:00
EOF
cd "$olddir"