]> sjero.net Git - wget/commitdiff
[svn] Test for the OpenSSL includes we actually use.
authorhniksic <devnull@localhost>
Tue, 10 May 2005 20:51:17 +0000 (13:51 -0700)
committerhniksic <devnull@localhost>
Tue, 10 May 2005 20:51:17 +0000 (13:51 -0700)
ChangeLog
configure.in

index a9f74e977010c63cc9155cb77853f55bc378b599..ff99546b75306640d2a2389ab56e8cd4e221b31a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index c1ee708bb6febc920b8ea8186006a3f4e9b162d7..4fd5aee63be43dad7a5071c76b6657a9e5b03d4b 100644 (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/x509.h>
 #include <openssl/err.h>
-#include <openssl/md4.h>
-#include <openssl/pem.h>
 #include <openssl/rand.h>
-#include <openssl/x509.h>
+#include <openssl/des.h>
+#include <openssl/md4.h>
+#include <openssl/md5.h>
     ], [
       AC_MSG_RESULT(found)
       ssl_found_includes=yes