diff options
author | Zak Greant <zak@php.net> | 2002-03-03 23:03:34 +0000 |
---|---|---|
committer | Zak Greant <zak@php.net> | 2002-03-03 23:03:34 +0000 |
commit | 6f4df4e16ccc3195f4605c9a8b470e57c3793e34 (patch) | |
tree | 7b5e8a2407fc7116748dc21a546f612755acace8 /build | |
parent | 6a6b5a6108313147a732ee9bb20126c6497ca8b7 (diff) | |
download | php-git-6f4df4e16ccc3195f4605c9a8b470e57c3793e34.tar.gz |
Added message regarding expected error messages for ./buildconf
Diffstat (limited to 'build')
-rwxr-xr-x | build/buildcheck.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh index 9f8a499f7d..192f601134 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -16,7 +16,7 @@ # | Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: buildcheck.sh,v 1.14 2002-01-24 23:31:45 markonen Exp $ +# $Id: buildcheck.sh,v 1.15 2002-03-03 23:03:34 zak Exp $ # echo "buildconf: checking installation..." @@ -37,8 +37,12 @@ echo " to build PHP from CVS." exit 1 else echo "buildconf: autoconf version $ac_version (ok)" +echo "**Note: Certain versions of autoconf may generate the warning:" +echo " 'AC_PROG_CPP called before AC_PROG_CC'" +echo " This error message is expected and can usually be ignored." fi + # automake 1.4 or newer am_version=`automake --version 2>/dev/null|head -1|sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'` am_version_clean=`echo $am_version|sed -e 's/-p[0-9]*$//'` |