diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-02-25 14:09:39 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-02-25 14:09:39 +0100 |
commit | 38f6c7c5f4625128ef0a9dc39b47b79e35354427 (patch) | |
tree | 8e797386cf46f88eca49d07305439be83e221c3e /cpp/src/Ice/ConnectionI.cpp | |
parent | Fixed ICE-5278 - No compiler check for PHP build if USE_BIN_DIST=yes (diff) | |
download | ice-38f6c7c5f4625128ef0a9dc39b47b79e35354427.tar.bz2 ice-38f6c7c5f4625128ef0a9dc39b47b79e35354427.tar.xz ice-38f6c7c5f4625128ef0a9dc39b47b79e35354427.zip |
Fixed ICE-5273 - Removed LTCG from ARFLAGS, fixed build failure on WinRT
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index 4e841872103..ca0be9dc19d 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -25,7 +25,9 @@ #include <Ice/LocalException.h> #include <Ice/ReferenceFactory.h> // For createProxy(). #include <Ice/ProxyFactory.h> // For createProxy(). -#include <bzlib.h> +#ifndef ICE_OS_WINRT +# include <bzlib.h> +#endif using namespace std; using namespace Ice; |