fixed Windows NetSSL_OpenSSL build issue with OpenSSL 1.0

This commit is contained in:
Guenter Obiltschnig
2010-07-23 10:53:29 +00:00
parent 7449ded251
commit e9d1a04ce0
3 changed files with 6 additions and 4 deletions

View File

@@ -108,6 +108,7 @@ Release 1.3.7 (2010-07-??)
and is now handled correctly (previously we did the exact reverse thing)
- added Poco::Util::AbstractConfiguration::remove() to remove a configuration property; added removeRaw() implementations
to all implementations (contributions by Daniel Hobi and Alexey Shults).
- fixed NetSSL_OpenSSL compilation error on Windows with OpenSSL 1.0
Release 1.3.6p2 (2010-01-15)
@@ -1289,4 +1290,4 @@ building the libraries.
--
$Id: //poco/1.3/dist/CHANGELOG#104 $
$Id: //poco/1.3/dist/CHANGELOG#105 $

View File

@@ -1,7 +1,7 @@
//
// Context.h
//
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/Context.h#13 $
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/Context.h#14 $
//
// Library: NetSSL_OpenSSL
// Package: SSLCore
@@ -41,6 +41,7 @@
#include "Poco/Net/NetSSL.h"
#include "Poco/Net/SocketDefs.h"
#include "Poco/Crypto/X509Certificate.h"
#include "Poco/Crypto/RSAKey.h"
#include "Poco/RefCountedObject.h"

View File

@@ -1,7 +1,7 @@
//
// X509Certificate.h
//
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h#9 $
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h#10 $
//
// Library: NetSSL_OpenSSL
// Package: SSLCore
@@ -41,11 +41,11 @@
#include "Poco/Net/NetSSL.h"
#include "Poco/Net/SocketDefs.h"
#include "Poco/Crypto/X509Certificate.h"
#include "Poco/DateTime.h"
#include "Poco/SharedPtr.h"
#include <set>
#include <openssl/ssl.h>
namespace Poco {