Mike Gran tells me that the way around the MacIntel gmp problem is to
configure with host=none-unknown-darwin7.1.0. I must have missed that
in the gmp instructions. Anyway, given gmp, the Guile 1.7.91 build chugs
away until
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -g -O2 -Wall -Wmissing-prot
This ist the problem, that the configure script does not figure out
that socklen_t does exist. Therefore it defines it when it is defined
in sys/socket.h the compiler throws an error.
Please use the code in configure.in which I posted earlier. Then it will
work.
Best regards
Michael
On Feb 17,
On Feb 17, 2006, at 06:18, Stanislav Ievlev wrote:
Greetings!
It is unable to call callback from thread in guile extension.
Does it work if you use scm_with_guile in that thread, as described
in the documentation?
(from doc/ref/api-init.texi)
Each thread that wants to use functions from t
In article <[EMAIL PROTECTED]>, Marius Vollmer <[EMAIL PROTECTED]> wrote:
>Michael Tuexen <[EMAIL PROTECTED]> writes:
>
>> the check for socklen_t fails incorrectly because socklen_t is
>> defined in /sys/socket.h on Mac OS X, and on BSD systems in general.
>
>What happens after the check fails?