summaryrefslogtreecommitdiff
path: root/wx+/zlib_wrap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/zlib_wrap.cpp')
-rwxr-xr-xwx+/zlib_wrap.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/wx+/zlib_wrap.cpp b/wx+/zlib_wrap.cpp
index 540854a1..cb6e3083 100755
--- a/wx+/zlib_wrap.cpp
+++ b/wx+/zlib_wrap.cpp
@@ -5,7 +5,9 @@
// *****************************************************************************
#include "zlib_wrap.h"
- #include <zlib.h> //let's pray this is the same version wxWidgets is linking against!
+//include the SAME zlib version that wxWidgets is linking against!
+ //#include <wx/../../../../../Source/src/zlib/zlib.h> //wxWidgets compiled with: --with-zlib=builtin
+ #include <zlib.h> //use same library as used by Curl (zlib is required for HTTP)
using namespace zen;
bgstack15