You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@serf.apache.org by as...@apache.org on 2016/09/16 14:36:14 UTC

svn commit: r1761040 - /serf/trunk/SConstruct

Author: astieger
Date: Fri Sep 16 14:36:13 2016
New Revision: 1761040

URL: http://svn.apache.org/viewvc?rev=1761040&view=rev
Log:
Support zlib in non-standard path on Unix

Found by: Michael Osipov
Fixes: SERF-180

* SConstruct: Add ZLIB path in non-win32 case

Modified:
    serf/trunk/SConstruct

Modified: serf/trunk/SConstruct
URL: http://svn.apache.org/viewvc/serf/trunk/SConstruct?rev=1761040&r1=1761039&r2=1761040&view=diff
==============================================================================
--- serf/trunk/SConstruct (original)
+++ serf/trunk/SConstruct Fri Sep 16 14:36:13 2016
@@ -400,6 +400,9 @@ else:
     apr_libs = ''
     apu_libs = ''
 
+  env.Append(CPPPATH=['$ZLIB/include'])
+  env.Append(LIBPATH=['$ZLIB/lib'])
+
   env.Append(CPPPATH=['$OPENSSL/include'])
   env.Append(LIBPATH=['$OPENSSL/lib'])