octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Google Summer of Code - LaTeX processing


From: Michael Goffioul
Subject: Re: Google Summer of Code - LaTeX processing
Date: Thu, 20 Jun 2013 08:06:33 -0400

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?

Michael.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]