On Thu, Jun 20, 2013 at 7:52 AM, Andrej Lojdl <address@hidden> wrote:
It would be helpful to have your config.log.
Here is the config.log.
Right. So the bison detection in the configure script is as follows. It creates a simple file conftest.yy like:
<<DEF>>
%start input
%%
input:;
%%
It replaces the <<DEF>> line with the 4 following possibilities (one at a time):
%define api.push-pull both
%define api.push-pull "both"
%define api.push_pull both
%define api.push_pull "both"
Then it runs bison on it. In your case, given the preceding bison detection, it would be:
/usr/local/bin/bison -y conftest.yy
Could you verify if any of the 4 possibilities would work with your bison. Also, your bison seems to be installed in an uncommon location (/usr/local). What system are you using and did you install your own version if bison?