Santiago Vila <[EMAIL PROTECTED]> writes: > checking for ssize_t... no
This is the crucial problem (in Output2). That test cases includes <sys/types.h> and decides that you don't have ssize_t, so it puts "#define ssize_t int" into config.h. Yet, as the other files make clear, your host does have a ssize_t typedef in <sys/types.h>. Can you please inspect config.log for the failing test, and find out why it mistakenly thinks your host lacks ssize_t? Thanks.