From: | Arjen van der Meijden <acm(at)tweakers(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Small bug in postgres' ./configure script and invalid bug-report-link on website |
Date: | 2003-05-06 18:45:37 |
Message-ID: | 004201c313ff$b3060410$3ac15e91@acm |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi List,
I'm using flex 2.5.31
acm(at)server pgsql $ flex --version
flex 2.5.31
And get this warning from the configure-script (in latest cvs):
checking for flex... no
configure: WARNING:
*** The Flex version 2.5.3 you have at /usr/bin/lex contains a bug. You
*** should get version 2.5.4 or later.
configure: WARNING:
*** Without Flex you will not be able to build PostgreSQL from CVS or
*** change any of the scanner definition files. You can obtain Flex
from
*** a GNU mirror site. (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)
Of course the regexp on line 3580 of the configure-script is wrong:
if $pgac_candidate --version | grep '2\.5\.3' >/dev/null 2>&1; then
I don't know a real solution, probably something like changing the grep
to read:
grep -e `2\.5\.3$'
Or adding a second grep to grep out 2\.5\.3[0-9]
Ow and the reason why I didn't try reporting this via the "Report a bug"
link on the postgresql-website is because that gave me a 404-error.
"Not Found
The requested URL /bugs/bugs.php was not found on this server.
Apache/1.3.27 Server at www.ca.postgresql.org Port 80"
Regards,
Arjen
From | Date | Subject | |
---|---|---|---|
Next Message | Dennis Gearon | 2003-05-06 19:07:47 | Re: Standard Solutions with Perl DBI::Pg for results tables |
Previous Message | Mr Mat psql-mail | 2003-05-06 18:19:32 | Perl DBI::Pg - Stop button |