James Mackay wrote:

> > > Tried a ./mkall and changing in the config.m4 from AC_ADD_LIBPATH to 
>PHP_ADD_LIBPATH but getting:
> > > 
> > > make[1]: Entering directory `/home/tmp/midgard-php4-1.4.2'
> > > yacc -d -v -p mgd preparser-parser.y && mv y.tab.c preparser-parser.c
> > > /bin/sh: yacc: command not found
> > > make[1]: *** [preparser-parser.c] Error 127
> > > make[1]: Leaving directory `/home/tmp/midgard-php4-1.4.2'
> > > make: *** [install-recursive] Error 1
> > 
> > You need yacc or bison to be installed. But one of them must be, or
> > you wouldn't have been able to compile midgard-lib.
> 
> Found bison in /usr/bin/bison.... Midgard-lib was installed okay?

It is customary for bison to install a yacc emulation script, and I
think automake is assuming its presence. Add a script file named
'yacc' somewere in your path with the content:

#!/bin/sh
exec bison -y "$@"

Emile



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to