You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@serf.apache.org by "Michael Osipov (JIRA)" <ji...@apache.org> on 2016/09/16 13:50:20 UTC

[jira] [Updated] (SERF-180) SConstruct never adds ZLIB paths on non-Windows platforms

     [ https://issues.apache.org/jira/browse/SERF-180?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael Osipov updated SERF-180:
--------------------------------
    Description: 
Having {{ZLIB}} in a non-default location makes linking at the end of the build fail. The {{SConstruct}} has the {{else}} block for non-{{win32}} from lines 366 to 404. One simply needs to add:

{noformat}
  env.Append(CPPPATH=['$ZLIB/include'],
             LIBPATH=['$ZLIB/lib'])
{noformat}

before the {{OPENSSL}} block.

Patch can be provided.

  was:
Having {{ZLIB}} in a non-default location makes linking at the end of the build fail. The {{SConstruct}} has the {{else}} block for non-{{win32}} from lines 366 to 404. One simply needs to add:

{noformat}
  env.Append(CPPPATH=['$ZLIB/include'],
             LIBPATH=['$ZLIB/lib/hpux32'])
{noformat}

before the {{OPENSSL}} block.

Patch can be provided.


> SConstruct never adds ZLIB paths on non-Windows platforms
> ---------------------------------------------------------
>
>                 Key: SERF-180
>                 URL: https://issues.apache.org/jira/browse/SERF-180
>             Project: serf
>          Issue Type: Bug
>    Affects Versions: serf-1.3.9
>            Reporter: Michael Osipov
>
> Having {{ZLIB}} in a non-default location makes linking at the end of the build fail. The {{SConstruct}} has the {{else}} block for non-{{win32}} from lines 366 to 404. One simply needs to add:
> {noformat}
>   env.Append(CPPPATH=['$ZLIB/include'],
>              LIBPATH=['$ZLIB/lib'])
> {noformat}
> before the {{OPENSSL}} block.
> Patch can be provided.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)