]> andersk Git - openssh.git/blobdiff - configure.in
- Merged AIX patch from Darren Hall <dhall@virage.org>
[openssh.git] / configure.in
index 274111e2c13fa35f36594a89e7d03c6c9ca52e3a..a232a746b68e45a35e9740d301f1272394d9bcae 100644 (file)
@@ -177,6 +177,18 @@ AC_TRY_COMPILE(
        [AC_MSG_RESULT(no)]
 ) 
 
+AC_MSG_CHECKING([For socklen_t])
+AC_TRY_COMPILE(
+       [#include <sys/types.h>],
+       [#include <sys/socket.h>],
+       [socklen_t foo; foo = 1235;],
+       [
+               AC_DEFINE(HAVE_SOCKLEN_T)
+               AC_MSG_RESULT(yes)
+       ],
+       [AC_MSG_RESULT(no)]
+)
+
 AC_ARG_WITH(pam,
        [  --without-pam           Disable PAM support ],
        [
This page took 0.089543 seconds and 4 git commands to generate.