[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:
Albert Cheng 2000-02-18 21:26:14 -05:00
parent 0a6f1be84f
commit fe91b80353
2 changed files with 321 additions and 315 deletions

628
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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.