On 03/10/11 23:58, Germán Arias wrote:
I found the problem. the configuration say:

checking size of size_t... 4
checking size of ssize_t... 4
checking for guile... /usr/local/bin/guile
checking for guile-config... /usr/local/bin/guile-config
checking for guile-tools... /usr/local/bin/guile-tools
checking libguile compile flags... -pthread
-I/usr/local/include/guile/2.0 -I/usr/local/include
checking libguile link flags... -L/usr/local/lib -lguile-2.0 -lgc
checking for guile-2.0... no


Why? the Guile libraries are just there.


Any advice? Thanks.


This (the final report line) is not checking the guile libraries, it is checking that the guile you are using can be executed with or without a version extension (GUILE_VERSIONED). I don't think that that is related to the problem.

It seems to me that you are compiling g-wrap too rigorously. Try turning off -Wall, -Werror and/or -Werror-implicit-function-declaration

i.e. in g-wrap/Makefile

CFLAGS = -g -O2 -Wall -Wmissing-prototypes -Werror -std=gnu99
->
CFLAGS = -g -O2

Paul.




Reply via email to