* SSL/configure.ac: Change test for ssl2_clear in -lssl

to test for SSL_clear, which is a public function and
is acutally used by the SSL bundle. The test for ssl2_clear
was failing with OpenSSL 1.0.0e.
* SSL/configure: Regenerate


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34836 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2012-02-27 22:06:39 +00:00
parent fb747bd9ca
commit 9d7b2d8f2b
3 changed files with 1431 additions and 1955 deletions

View file

@ -1,3 +1,11 @@
2012-02-27 Eric Wasylishen <ewasylishen@gmail.com>
* SSL/configure.ac: Change test for ssl2_clear in -lssl
to test for SSL_clear, which is a public function and
is acutally used by the SSL bundle. The test for ssl2_clear
was failing with OpenSSL 1.0.0e.
* SSL/configure: Regenerate
2012-02-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSArchiver.m:

3374
SSL/configure vendored

File diff suppressed because it is too large Load diff

View file

@ -180,9 +180,9 @@ if test $enable_openssl = yes; then
if test $ac_cv_lib_crypto_CRYPTO_malloc = yes; then
# ssl needs socket on Solaris
AC_CHECK_LIB(socket, main)
AC_CHECK_LIB(ssl, ssl2_clear)
AC_CHECK_LIB(ssl, SSL_clear)
AC_CHECK_LIB(cipher,des_setkey)
if test $ac_cv_lib_ssl_ssl2_clear = yes; then
if test $ac_cv_lib_ssl_SSL_clear = yes; then
ssl_ok=yes
fi
AC_CHECK_FUNC(CRYPTO_THREADID_set_callback)