108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# The OpenSSL and BSAFE SSL-C directory structures differ.
#--------------------------------------------------------------------
if test -n "${OPENSSL}"; then
SSL_LIB_DIR=${SSL_DIR}/lib
SSL_INCLUDE_DIR=${SSL_DIR}/include
if test ! -f "${SSL_INCLUDE_DIR}/openssl/opensslv.h"; then
AC_ERROR(bad ssl-dir: cannot find opensslv.h under ${SSL_INCLUDE_DIR})
fi
else
SSL_LIB_DIR=${SSL_DIR}/${PLATFORM}/library/lib
SSL_INCLUDE_DIR=${SSL_DIR}/${PLATFORM}/library/include
if test ! -f "${SSL_INCLUDE_DIR}/crypto.h"; then
AC_ERROR(bad ssl-dir: cannot find crypto.h under ${SSL_INCLUDE_DIR})
fi
|
|
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# The OpenSSL and BSAFE SSL-C directory structures differ.
#--------------------------------------------------------------------
if test -n "${OPENSSL}"; then
SSL_LIB_DIR=${SSL_DIR}/lib
SSL_INCLUDE_DIR=${SSL_DIR}/include
if test ! -f "${SSL_INCLUDE_DIR}/openssl/opensslv.h"; then
AC_ERROR(bad ssl-dir: cannot find openssl/opensslv.h under ${SSL_INCLUDE_DIR})
fi
else
SSL_LIB_DIR=${SSL_DIR}/${PLATFORM}/library/lib
SSL_INCLUDE_DIR=${SSL_DIR}/${PLATFORM}/library/include
if test ! -f "${SSL_INCLUDE_DIR}/crypto.h"; then
AC_ERROR(bad ssl-dir: cannot find crypto.h under ${SSL_INCLUDE_DIR})
fi
|