OpenSSL 0.9.8za fails to build on Solaris 9. It uses INT_MAX in ssl/s3_pkt.c but doesn't include limits.h. This is a new change since 0.9.8y (confirmed by diffing the source code). The fix is trivial:
--- tmp/openssl-0.9.8za/ssl/s3_pkt.c 2014-06-05 09:09:26.000000000 +0100 +++ work/openssl-0.9.8za/ssl/s3_pkt.c 2014-06-05 22:38:35.163684000 +0100 @@ -111,6 +111,7 @@ #include <stdio.h> #include <errno.h> +#include <limits.h> #define USE_SOCKETS #include "ssl_locl.h" #include <openssl/evp.h> -- Tim Bishop http://www.bishnet.net/tim/ PGP Key: 0x6C226B37FDF38D55 ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager majord...@openssl.org