diff options
author | Jose <jose@zeroc.com> | 2018-06-11 11:37:00 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-11 11:37:00 +0200 |
commit | 53860a88bd958dc832d2ffeb028591c2b7cb552b (patch) | |
tree | 376ab9dc939bad6d5404f35ac54b74c43a854969 /cpp/src/IceSSL/SecureTransportEngineF.h | |
parent | Add third party license to NuGet packages (diff) | |
download | ice-53860a88bd958dc832d2ffeb028591c2b7cb552b.tar.bz2 ice-53860a88bd958dc832d2ffeb028591c2b7cb552b.tar.xz ice-53860a88bd958dc832d2ffeb028591c2b7cb552b.zip |
Use ifndef around OS specific headers
Fixes #52
Diffstat (limited to 'cpp/src/IceSSL/SecureTransportEngineF.h')
-rw-r--r-- | cpp/src/IceSSL/SecureTransportEngineF.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/SecureTransportEngineF.h b/cpp/src/IceSSL/SecureTransportEngineF.h index 3a68f1c3f80..aa91b1ba6b4 100644 --- a/cpp/src/IceSSL/SecureTransportEngineF.h +++ b/cpp/src/IceSSL/SecureTransportEngineF.h @@ -10,6 +10,7 @@ #ifndef ICESSL_SECURE_TRANSPORT_ENGINE_F_H #define ICESSL_SECURE_TRANSPORT_ENGINE_F_H +#ifdef __APPLE__ #include <IceSSL/Plugin.h> #include <IceUtil/Shared.h> #include <Ice/Handle.h> @@ -29,3 +30,5 @@ typedef IceInternal::Handle<SSLEngine> SSLEnginePtr; } #endif + +#endif |