cliboard released (beta)

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

User avatar
hgm
Posts: 27808
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: cliboard released (beta)

Post by hgm »

frankp wrote:Thanks, but the problem I have is:

./autogen.sh: line 23: aclocal: command not found
That is because you don't have the autotools installed.

I think you have to do somthing like

sudo apt-get install autotools

Or perhaps automake and autoconf in stead of autotools.
frankp
Posts: 228
Joined: Sun Mar 12, 2006 3:11 pm

Re: cliboard released (beta)

Post by frankp »

Thanks. automake did the trick, plus a few libraries. (I was focussed on autotools.).
User avatar
michiguel
Posts: 6401
Joined: Thu Mar 09, 2006 8:30 pm
Location: Chicago, Illinois, USA

Re: cliboard released (beta)

Post by michiguel »

frankp wrote:Thanks. automake did the trick, plus a few libraries. (I was focussed on autotools.).
None of this is working for me. I installed autotools and ran
sudo apt-get install libxaw7 libxaw7-dev xaw3dg xaw3dg-dev texinfo

and I still get

./autogen.sh: 25: aclocal: not found

Did you install any other library? it got to be a new one because I compiled in this systems other 4.3.x versions of xboard with no problem.

Miguel
User avatar
michiguel
Posts: 6401
Joined: Thu Mar 09, 2006 8:30 pm
Location: Chicago, Illinois, USA

Re: cliboard released (beta)

Post by michiguel »

michiguel wrote:
frankp wrote:Thanks. automake did the trick, plus a few libraries. (I was focussed on autotools.).
None of this is working for me. I installed autotools and ran
sudo apt-get install libxaw7 libxaw7-dev xaw3dg xaw3dg-dev texinfo

and I still get

./autogen.sh: 25: aclocal: not found

Did you install any other library? it got to be a new one because I compiled in this systems other 4.3.x versions of xboard with no problem.

Miguel
I found that automake was also necessary.

./configure ran fine but when now I try
sudo make
I get

/bin/bash ./ylwrap parser.l lex.yy.c parser.c -- /bin/bash /missing flex
/bin/bash: /missing: No such file or directory
make[1]: *** [parser.c] Error 1
make[1]: Leaving directory `/media/bigdisk/cc/xboard-4.4.0'
make: *** [all] Error 2

Miguel
User avatar
michiguel
Posts: 6401
Joined: Thu Mar 09, 2006 8:30 pm
Location: Chicago, Illinois, USA

Re: cliboard released (beta)

Post by michiguel »

michiguel wrote:
michiguel wrote:
frankp wrote:Thanks. automake did the trick, plus a few libraries. (I was focussed on autotools.).
None of this is working for me. I installed autotools and ran
sudo apt-get install libxaw7 libxaw7-dev xaw3dg xaw3dg-dev texinfo

and I still get

./autogen.sh: 25: aclocal: not found

Did you install any other library? it got to be a new one because I compiled in this systems other 4.3.x versions of xboard with no problem.

Miguel
I found that automake was also necessary.

./configure ran fine but when now I try
sudo make
I get

/bin/bash ./ylwrap parser.l lex.yy.c parser.c -- /bin/bash /missing flex
/bin/bash: /missing: No such file or directory
make[1]: *** [parser.c] Error 1
make[1]: Leaving directory `/media/bigdisk/cc/xboard-4.4.0'
make: *** [all] Error 2

Miguel
Well, now it works. It probably was that I installed flex, but I am not sure.

Miguel