diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2016-05-27 15:47:23 +0000 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2016-05-27 15:47:23 +0000 |
commit | 94b38ab53b78a11a6a97f2c22e8805e064a40d47 (patch) | |
tree | de321ff5c87290807567a05cf3d180937a6d2b9a /support/ab.c | |
parent | c4c60ad32f890ca2cfc42c760d06f0697d68aa6b (diff) | |
download | httpd-94b38ab53b78a11a6a97f2c22e8805e064a40d47.tar.gz |
PR59630: include OpenSSL_Applink when compiling on Visual Studio 2015 and up
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
Diffstat (limited to 'support/ab.c')
-rw-r--r-- | support/ab.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/support/ab.c b/support/ab.c index d7cf8decff..eafc707644 100644 --- a/support/ab.c +++ b/support/ab.c @@ -170,6 +170,10 @@ #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) |