harfbuzz/autogen.sh

34 lines
745 B
Bash
Raw Normal View History

2009-11-02 22:28:39 +01:00
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
2009-11-02 22:28:39 +01:00
olddir=`pwd`
2009-11-02 22:28:39 +01:00
cd $srcdir
echo -n "checking for ragel... "
which ragel || {
echo "You need to install ragel... See http://www.complang.org/ragel/"
exit 1
}
echo -n "checking for pkg-config... "
which pkg-config || {
echo "*** No pkg-config found, please install it ***"
exit 1
}
2011-08-01 22:39:32 +02:00
echo -n "checking for autoreconf... "
which autoreconf || {
echo "*** No autoreconf found, please install it ***"
exit 1
2011-08-01 22:39:32 +02:00
}
echo "running autoreconf --force --install --verbose"
autoreconf --force --install --verbose || exit $?
2009-11-02 22:28:39 +01:00
cd $olddir
2011-08-01 22:39:32 +02:00
echo "running configure $@"
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"