Changeset 34


Ignore:
Timestamp:
Sep 5, 2006, 11:45:30 PM (19 years ago)
Author:
dmik
Message:

QCA-TLS: Added OS/2-related defines to make it compile.

Location:
qca-tls/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified qca-tls/trunk/qca-tls.pro

    r31 r34  
    2020        LIBS += c:\local\lib\libeay32.lib c:\local\lib\ssleay32.lib
    2121}
     22os2:{
     23        DEFINES += QCA_PLUGIN_DLL OSSL_097
     24        INCLUDEPATH += ..\openssl-0.9.8b\outinc
     25        LIBS += ..\openssl-0.9.8b\out\crypto ..\openssl-0.9.8b\out\ssl
     26}
    2227
    2328include(conf.pri)
  • TabularUnified qca-tls/trunk/qca.h

    r31 r34  
    4242#endif
    4343
    44 #ifdef Q_OS_WIN32
     44#if defined(Q_OS_WIN32)
    4545#  ifdef QCA_PLUGIN_DLL
    4646#    define QCA_PLUGIN_EXPORT extern "C" __declspec(dllexport)
     
    4848#    define QCA_PLUGIN_EXPORT extern "C" __declspec(dllimport)
    4949#  endif
     50#elif defined(Q_OS_OS2)
     51#  define QCA_PLUGIN_EXPORT extern "C" _System
    5052#endif
    5153#ifndef QCA_PLUGIN_EXPORT
Note: See TracChangeset for help on using the changeset viewer.