On Sat, 14 Feb 2004, Riccardo wrote:
Hello,
I posted the buildlog I got on AIX... did someone had a look at it to see if there are some warnings or errors that could explain the brokeness of dillo on aix?
Of course the right way to fix the socklen_t issue is to have: TYPE_SOCKLEN_T in configure.in, or to define it like this: AC_DEFUN([TYPE_SOCKLEN_T], [AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, [ AC_TRY_COMPILE( [#include <sys/types.h> #include <sys/socket.h>], [socklen_t len = 42; return 0;], ac_cv_type_socklen_t=yes, ac_cv_type_socklen_t=no) ]) if test $ac_cv_type_socklen_t != yes; then AC_DEFINE(socklen_t, int) fi ]) I just want to know it it solves the problem before changing the configure script. Cheers Jorge.-