Tarjei Huse wrote:

>>> is ther any way I can test the libmidgard files to see why
>> 
>> they do not
>> 
>>> return -lmidgard to the configure script?
>> 
>> Which libmidgard files do you mean?
> 
> Ehurmb. I guess the files in /usr/local/midgard/lib :) As I've understood
> it, the configure script checks for mgd_conect in these files (pls. bear
> with me) somehow (if you know ho, maybe I can debug) .

It only tests to see if the symbol exists. In order to do that, it 
compiles a small program, like this:

char mgd_connect(); int main () { mgd_connect(); return 0; }

Try

$ gcc -o conftest conftest.c

and it will return an error. Try

$ gcc -o conftest conftest.c -lmidgard

and it will not complain. This is the test configure uses to see if a 
library offers a symbol.

Emile


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

Reply via email to