]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR59630: include OpenSSL_Applink when compiling on Visual Studio 2015 and up
authorGregg Lewis Smith <gsmith@apache.org>
Fri, 27 May 2016 15:47:23 +0000 (15:47 +0000)
committerGregg Lewis Smith <gsmith@apache.org>
Fri, 27 May 2016 15:47:23 +0000 (15:47 +0000)
Submitted By: Jan Ehrhardt <phpdev ehrhardt.nl>
Committed By: gsmith

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1745767 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
support/ab.c

diff --git a/CHANGES b/CHANGES
index 7e7f17f4525010fdbf7d3496ae54caf1a7e3fce2..f8f6f8d9283e718caccd573b9d48ce3d648dae61 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
+  *) abs: include OpenSSL_Applink when compiling on Visual Studio 2015 
+          and up. PR59630 [Jan Ehrhardt <phpdev ehrhardt.nl>]
+
   *) mod_http2: improved event handling for suspended streams, responses
      and window updates. [Stefan Eissing] 
      
index d7cf8decff5e41f1b952529ff7f77fd54dccf08a..eafc707644efd6cbdb0498e2fe9b650b479a7bc6 100644 (file)
 #define SK_VALUE(x,y) sk_X509_value(x,y)
 typedef STACK_OF(X509) X509_STACK_TYPE;
 
+#if defined(_MSC_VER) && _MSC_VER >= 1900
+#include <openssl/applink.c>
+#endif
+
 #endif
 
 #if defined(USE_SSL)