diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-12-17 19:10:06 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-12-17 19:10:06 +0000 |
commit | 4916c78ad529c3874ea057c98ed56acf1db1feb1 (patch) | |
tree | 9a93ee0beebc3951a46c9adaa2a85faf102530c8 | |
parent | 71ad9f439f29e4497f7d23e2f718f0789a9ca21f (diff) | |
download | tinyproxy-4916c78ad529c3874ea057c98ed56acf1db1feb1.tar.gz tinyproxy-4916c78ad529c3874ea057c98ed56acf1db1feb1.zip |
Removed the version test for the bison.
-rw-r--r-- | configure.ac | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index 327090b..8ed3268 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl $Id: configure.ac,v 2.3 2001-12-17 00:28:28 rjkaes Exp $ +dnl $Id: configure.ac,v 2.4 2001-12-17 19:10:06 rjkaes Exp $ dnl Devlopers, please strive to achieve this order: dnl @@ -160,15 +160,6 @@ CFLAGS="$cflags_save" dnl Make sure YACC is actually bison if test x"$YACC" != x"bison -y"; then AC_MSG_WARN([You will need bison if you want to regenerate the parser.]) -else - AC_MSG_CHECKING([bison version]) - oldIFS=$IFS; IFS=. - set `bison -V | sed -e 's/^GNU Bison version //'` - IFS=$oldIFS - if test x"$1" = x"1" -a "$2" -lt "25"; then - AC_MSG_WARN([Bison 1.25 or newer needed to regenerate parsers (found $1.$2).]) - fi - AC_MSG_RESULT([$1.$2 (ok)]) fi dnl |