Skip to content

Commit

Permalink
git-svn-id: svn://cherokee-project.com/cherokee/trunk@2668 5dc97367-9…
Browse files Browse the repository at this point in the history
…7f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed Jan 5, 2009
1 parent 3a42855 commit b288ceb
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions autogen.sh
Expand Up @@ -30,36 +30,38 @@ else
fi

($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
echo
echo "You must have autoconf installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}

($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have libtool installed to compile $PROJECT."
echo "Get ftp://ftp.gnu.org/gnu/libtool/libtool-1.4.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
echo
echo "You must have libtool installed to compile $PROJECT."
echo "Download the appropriate package for your distribution, or"
echo "get http://ftp.gnu.org/gnu/libtool/libtool-2.2.6a.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
}

($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $PROJECT."
echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
echo
echo "You must have automake installed to compile $PROJECT."
echo "Download the appropriate package for your distribution, or"
echo "get http://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
}

if test "$DIE" -eq 1; then
exit 1
exit 1
fi

if test -z "$*"; then
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line."
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line."
fi

case $CC in
Expand Down

0 comments on commit b288ceb

Please sign in to comment.