diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-09-06 15:17:28 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-09-06 15:17:40 (GMT) |
commit | acdeee8c6ac287618807cd22702d3cba1a1cd1ee (patch) | |
tree | 9e7a2b34ba78ecc7bd0754f84872342eef8139d2 | |
parent | 7b2b2a73a153b6cf50539a2643882fac507cc9da (diff) | |
download | hdf5-acdeee8c6ac287618807cd22702d3cba1a1cd1ee.zip hdf5-acdeee8c6ac287618807cd22702d3cba1a1cd1ee.tar.gz hdf5-acdeee8c6ac287618807cd22702d3cba1a1cd1ee.tar.bz2 |
Windows ssl headers are not in system loacation
-rw-r--r-- | src/H5FDs3comms.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5FDs3comms.h b/src/H5FDs3comms.h index 94fae7e..51d9b55 100644 --- a/src/H5FDs3comms.h +++ b/src/H5FDs3comms.h @@ -11,7 +11,7 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /***************************************************************************** - * Read-Only S3 Virtual File Driver (VFD) + * Read-Only S3 Virtual File Driver (VFD) * * This is the header for the S3 Communications module * @@ -57,10 +57,10 @@ #ifdef H5_HAVE_ROS3_VFD /* Necessary S3 headers */ -#include <curl/curl.h> -#include <openssl/evp.h> -#include <openssl/hmac.h> -#include <openssl/sha.h> +#include "curl/curl.h" +#include "openssl/evp.h" +#include "openssl/hmac.h" +#include "openssl/sha.h" /***************** * PUBLIC MACROS * |