Ahhh!!!!!!!
This is the same problem I had with redhat. According to this the "strcopy" function is not found. As I recall you have to add:
#include<string.h>
to all the files that have a problem. In this case "GemGluObj.o"
There is another error you will get about "abs" being missing in which case you have to add:
#include<math.h>
Now this is all from memory so I hope its correct. If the kind person who sent me this info in the first place confirm or deny what I have said that would be great.
I did not have this problem using Debian, only redhat.
I did get it to compile with these modifications!
Good luck. Ben
On Mon, 11 Feb 2002, Jim Ruxton wrote:
Ok so I finally got ./configure to work. What I did to get it to work is I went back to the gltt site and downloaded the rpm gltt-devel-2.5.2-2.i386.rpm instead of gltt-2.5.2-2.i386.rpm which I downloaded first time around . This file contained : libgltt.a libgltt.so libglttso.0 libgltt.so.0.0.0 libgltt.la The rpm installed them in /usr/lib and now ./configure appears to be working. Maybe it would be good to put this information in the Gem FAQ. Now the sad ending to this story is that "make" is not finishing or creating Gem.pd_linux . There are errors in compiling GemGluObj.cpp ie. GemGluObj.cpp: In method 'void GemGluObj::typeMess (t_symbol *)': GemGluObj.cpp:83: 'strcmp` undeclared (first use this function) GemGluObj.cpp:83: (Each undeclared identifier is reported only once for each function it appears in.) make[1]: ***[GemGluObj.o] Error 1
etc.
Any thoughts on this one. Thanks again for all the help I've been getting with this. Jim