I'm trying to install Monit 5.0 Beta 1 on a completely clean Ubuntu Server. It fails at the make command. This is what I've done, in chronological order:
installed:
openssh-server
flex
byacc
gcc
g++
make
used:
./configure --without-ssl (finished without error)
make
error:
byacc -dt p.y
byacc: f - cannot open "y.tab.h"
make: *** [y.tab.c] Error 2
uninstalled:
byacc
installed:
btyacc
used:
make
error:
byacc -dt p.y
make: byacc: Command not found
make: *** [y.tab.c] Error 127
uninstalled:
btyacc
installed:
bison-1.35
used:
make
error:
byacc -dt p.y
make: byacc: Command not found
make: *** [y.tab.c] Error 127
uninstalled:
bison-1.35
installed:
bison
used:
make
error:
byacc -dt p.y
make: byacc: Command not found
make: *** [y.tab.c] Error 127
Is anyone able to make sense of the problem?