yate/autogen.sh
paulc d56cecb40e Added copyright notices to sources and scripts missing them.
Updated copyright notices for 2014.
Fixed end of lines in many files.


git-svn-id: http://voip.null.ro/svn/yate@5755 acf43c95-373e-0410-b603-e72c3f656dc1
2014-02-05 11:42:17 +00:00

49 lines
1.3 KiB
Bash
Executable file

#!/bin/sh
# autogen.sh
# This file is part of the YATE Project http://YATE.null.ro
#
# Yet Another Telephony Engine - a fully featured software PBX and IVR
# Copyright (C) 2005-2014 Null Team
#
# This software is distributed under multiple licenses;
# see the COPYING file in the main directory for licensing
# information for this specific distribution.
#
# This use of this software may be subject to additional restrictions.
# See the LEGAL file in the main directory for details.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# Run this to generate a new configure script
if [ -z `which which 2>/dev/null` ]; then
echo "Please install the required 'which' utility." >&2
exit 1
fi
ac=`which autoconf 2>/dev/null`
test -z "$ac" && ac=/usr/local/gnu-autotools/bin/autoconf
if [ -x "$ac" ]; then
"$ac" || exit $?
./yate-config.sh || exit $?
case "x$1" in
x--silent)
;;
x--configure)
shift
./configure "$@" || exit $?
echo "Finished! Now run make."
;;
*)
echo "Finished! Now run configure. If in doubt run ./configure --help"
;;
esac
else
echo "Please install Gnu autoconf to build from CVS." >&2
exit 1
fi