Bug 277053 - security/openiked: skip zlib version check
Summary: security/openiked: skip zlib version check
Status: New
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Marcel Moolenaar
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-02-14 18:06 UTC by Hiroo Ono
Modified: 2024-02-14 18:06 UTC (History)
0 users

See Also:
bugzilla: maintainer-feedback? (marcel)


Attachments
configure with --without-zlib-version-check option (616 bytes, patch)
2024-02-14 18:06 UTC, Hiroo Ono
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Hiroo Ono 2024-02-14 18:06:20 UTC
Created attachment 248464 [details]
configure with --without-zlib-version-check option

security/openiked 2.2 fails at configure by the error below:
----
checking for possibly buggy zlib... yes
configure: error: *** zlib too old - check config.log ***
Your reported zlib version has known security problems.  It's possible your
vendor has fixed these problems without changing the version number.  If you
are sure this is the case, you can disable the check by running
"./configure --without-zlib-version-check".
If you are in doubt, upgrade zlib to version 1.2.3 or greater.
See http://www.gzip.org/zlib/ for details.
----

The zlib version in base is 1.2.13 in 13.2-RELEASE, and apparently newer in 13-STABLE, 14.0-RELEASE, 14-STABLE and CURRENT. So, we can use the option --without-zlib-version-check safely.
The reason of configure failing is maybe FreeBSD wraps zlib with the zopen wrapper?