2011-03-14 16:17 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbssl/x509.c
    + Enable feature which is fixed with newer (1.0.0) openssl 
      version. It's now enable for 1.0.0 final and newer, I did 
      only test it with 1.0.0d.
This commit is contained in:
Viktor Szakats
2011-03-14 15:18:11 +00:00
parent b897d74366
commit bbae366206
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-03-14 16:17 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbssl/x509.c
+ Enable feature which is fixed with newer (1.0.0) openssl
version. It's now enable for 1.0.0 final and newer, I did
only test it with 1.0.0d.
2011-03-12 21:44 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtgui/hbqtgui.hbc
* contrib/hbqt/qtwebkit/hbqtwebkit.hbc

View File

@@ -130,7 +130,7 @@ HB_FUNC( X509_GET_ISSUER_NAME )
HB_FUNC( X509_NAME_ONELINE )
{
#if OPENSSL_VERSION_NUMBER < 0x10000000L /* TOFIX: Compilation error when tried with 1.0.0beta5 */
#if OPENSSL_VERSION_NUMBER < 0x10000000L || OPENSSL_VERSION_NUMBER >= 0x1000000FL /* NOTE: Compilation error when tried with 1.0.0beta5 */
X509_NAME * x509_name = ( X509_NAME * ) hb_parptr( 1 );
if( x509_name )