yate/autogen.sh

22 lines
568 B
Bash
Executable File

#!/bin/sh
# Run this to generate a new configure script
if [ -s engine/tables/a2s.h ]; then
echo "Good! Tables are generated so we don't need sox."
else
if [ -z `which sox 2>/dev/null` ]; then
echo "Please install sox to be able to build from CVS version." >&2
exit 1
fi
fi
ac=`which autoconf 2>/dev/null`
test -z "$ac" && ac=/usr/local/gnu-autotools/bin/autoconf
if [ -x "$ac" ]; then
"$ac" && echo "Finished! Now run configure. If in doubt run ./configure --help"
else
echo "Please install Gnu autoconf to build from CVS." >&2
exit 1
fi