Skip to content

Commit

Permalink
cpan/Compress-Raw-Zlib - Update to version 2.209
Browse files Browse the repository at this point in the history
  2.209 26 February 2024

      * version 2.209
        Mon Feb 26 15:54:39 2024 +0000
        b8c062949b7e89a2f1643825f6b66f79b2ba3b68

      * #31 Fix build failure with "c++-compat" warnings
        Mon Feb 26 15:20:07 2024 +0000
        d9af6f896accf755fa1ef486cf128fdf66314213
  • Loading branch information
pmqs authored and jkeenan committed Feb 26, 2024
1 parent e8fa1e7 commit b07cb93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ package Maintainers;
},

'Compress::Raw::Zlib' => {
'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.208.tar.gz',
'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.209.tar.gz',
'SYNCINFO' => 'jkeenan on Mon Feb 26 13:48:59 2024',
'SYNCINFO' => 'jkeenan on Sun Feb 25 20:07:03 2024',
'SYNCINFO' => 'yorton on Tue Jul 25 20:37:04 2023',
'FILES' => q[cpan/Compress-Raw-Zlib],
Expand Down
2 changes: 1 addition & 1 deletion cpan/Compress-Raw-Zlib/Zlib.xs
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ voidpf my_zcalloc (voidpf opaque, unsigned items, unsigned size)
PERL_UNUSED_VAR(opaque);
/* TODO - put back to calloc */
/* return safecalloc(items, size); */
return safemalloc(items* size);
return (voidpf)safemalloc(items* size);
}


Expand Down
2 changes: 1 addition & 1 deletion cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD, %DEFLATE_CONSTANTS, @DEFLATE_CONSTANTS);

$VERSION = '2.208';
$VERSION = '2.209';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;

Expand Down
6 changes: 3 additions & 3 deletions cpan/Compress-Raw-Zlib/zlib-src/zconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -408,12 +408,12 @@ typedef uLong FAR uLongf;

#ifdef STDC
typedef void const *voidpc;
typedef void FAR *voidpf;
typedef Bytef *voidpf;
typedef Bytef *voidp;
#else
typedef Byte const *voidpc;
typedef Byte FAR *voidpf;
typedef Byte *voidp;
typedef Bytef *voidpf;
typedef Bytef *voidp;
#endif

#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
Expand Down

0 comments on commit b07cb93

Please sign in to comment.