mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[svn-r1978] configure.in:
Removed the unnecessary warning message from the SSL test. Made it to set variable SSL instead. configure: Auto-generated from configure.in.
This commit is contained in:
parent
0a6f1be84f
commit
fe91b80353
@ -498,14 +498,16 @@ esac
|
||||
dnl ----------------------------------------------------------------------
|
||||
dnl Is SSL library present? It is needed by the DPSS driver.
|
||||
dnl
|
||||
AC_SUBST(SSL)
|
||||
SSL=yes
|
||||
|
||||
AC_ARG_WITH(ssl,[ --with-ssl=LIB Use SSL libs from LIB ],,)
|
||||
if test "X-" != "X-$with_ssl_libpath"; then
|
||||
LDFLAGS="$LDFLAGS -L$with_ssl_libpath"
|
||||
fi
|
||||
|
||||
AC_CHECK_LIB(crypto,main,,unset GASS TESTGASS)
|
||||
AC_CHECK_LIB(ssl,SSL_get_version,,
|
||||
AC_MSG_WARN([SSL libraries not found (required for GASS). Please use option --with-ssl-libpath !]); unset GASS TESTGASS)
|
||||
AC_CHECK_LIB(crypto,main,,unset SSL)
|
||||
AC_CHECK_LIB(ssl,SSL_get_version,,unset SSL)
|
||||
|
||||
dnl ----------------------------------------------------------------------
|
||||
dnl Is Globus-GASS present? If so then we can compile in the GASS driver.
|
||||
|
Loading…
Reference in New Issue
Block a user