Josh Berkus wrote: > Folks, > > Update on this: Just tried it with: > SuSE 9.1, GCC 3.3.3, Bison 1.875 > and don't get the error. > > So it looks like the requirement for Bison 1.85+ is now a "hard" requirement? > We'll need to document this, since SuSE 9.0 is less than a year old, and I'm > sure some other distros are still using 1.75.
I see in configure.in: AC_CHECK_PROGS(YACC, ['bison -y']) if test "$YACC"; then if $YACC --version | sed q | $AWK '{ if ($4 < 1.875) exit 0; else exit 1;}'; then AC_MSG_WARN([ *** If you are going to modify the grammar files or build from CVS, the installed *** version of Bison is too old. Bison version 1.875 or later is required.]) fi fi Looks documented to me. -- Bruce Momjian | http://candle.pha.pa.us [EMAIL PROTECTED] | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match