1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Test for the OpenSSL includes we actually use.

This commit is contained in:
hniksic 2005-05-10 13:51:17 -07:00
parent c17e1b6396
commit 5322ad1924
2 changed files with 9 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2005-05-10 Hrvoje Niksic <hniksic@xemacs.org>
* configure.in: Test for OpenSSL includes we actually need.
2005-05-06 Hrvoje Niksic <hniksic@xemacs.org>
* Makefile.in ($(srcdir)/stamp-h.in): Don't print the line with

View File

@ -333,14 +333,12 @@ if test x"$with_ssl" != x"no"; then
AC_MSG_CHECKING([for includes])
AC_COMPILE_IFELSE([
#include <openssl/ssl.h>
#include <openssl/bio.h>
#include <openssl/crypto.h>
#include <openssl/des.h>
#include <openssl/err.h>
#include <openssl/md4.h>
#include <openssl/pem.h>
#include <openssl/rand.h>
#include <openssl/x509.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/des.h>
#include <openssl/md4.h>
#include <openssl/md5.h>
], [
AC_MSG_RESULT(found)
ssl_found_includes=yes