diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2022-03-27 09:53:05 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2022-03-27 09:53:05 +0000 |
commit | 5462fcc88b9abfa183ca69f0d541481011fc7ab8 (patch) | |
tree | 3ff6e4696ec9147d8dd28bca1fb8e42a2e831b04 /gnu/usr.bin | |
parent | 18b01e45139bb362e566157894a2c7d600c80e51 (diff) |
Revert previous. Use private copy of zlib in Compress::Raw::Zlib
again. The header zlib.h in our base uses z_off_t for fields
total_in and total_out in struct z_stream_s. The rest of the world
uses uLong there. This leads to an incompatibility when comiled
with Perl. The pkg tools fail on i386.
debugged by semarie@; discussed with tb@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/config.in b/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/config.in index 30d14a6b220..d6701ffb0cf 100644 --- a/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/config.in +++ b/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/config.in @@ -16,9 +16,9 @@ # Setting the Gzip OS Code # -BUILD_ZLIB = False -INCLUDE = /usr/include -LIB = /usr/lib +BUILD_ZLIB = True +INCLUDE = ./zlib-src +LIB = ./zlib-src OLD_ZLIB = False GZIP_OS_CODE = AUTO_DETECT |