@@ -81,24 +81,30 @@ #-------------------------------------------------------------------- # If we're using RSA BSAFE SSL-C, we need to establish what platform # we're running on before we can figure out some paths. # This step isn't necessary if we're using OpenSSL. #-------------------------------------------------------------------- + if test -z "${OPENSSL}"; then + AC_MSG_CHECKING(host type) case "`uname -s`" in *win32* | *WIN32* | *CYGWIN_NT*|*CYGWIN_98*|*CYGWIN_95*) PLATFORM=WIN32 AC_DEFINE(WINDOWS) ;; *SunOS*) PLATFORM=SOLARIS ;; + HP-UX) + PLATFORM=HPUX + ;; *) PLATFORM=LINUX ;; esac + AC_MSG_RESULT(${PLATFORM}) fi AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=DIR SSL root directory], SSL_DIR=$withval) if test ! -d "${SSL_DIR}"; then