diff --git a/m4/ax_type_socklen_t.m4 b/m4/ax_type_socklen_t.m4 index 834c4cfa..593e669a 100644 --- a/m4/ax_type_socklen_t.m4 +++ b/m4/ax_type_socklen_t.m4 @@ -42,7 +42,7 @@ # modified version of the Autoconf Macro, you may extend this special # exception to the GPL to apply to your modified version as well. -#serial 5 +#serial 6 AU_ALIAS([TYPE_SOCKLEN_T], [AX_TYPE_SOCKLEN_T]) AC_DEFUN([AX_TYPE_SOCKLEN_T], @@ -51,7 +51,7 @@ AC_DEFUN([AX_TYPE_SOCKLEN_T], AC_TRY_COMPILE( [#include #include ], - [socklen_t len = 42; return 0;], + [socklen_t len = (socklen_t) 42; return (!len);], ac_cv_ax_type_socklen_t=yes, ac_cv_ax_type_socklen_t=no) ])