~darling-team/darling-emu/+git/darling-zlib:develop

Last commit made on 2015-10-04
Get this branch:
git clone -b develop https://git.launchpad.net/~darling-team/darling-emu/+git/darling-zlib

Branch merges

Branch information

Recent commits

8f1b374... by Mark Adler <email address hidden>

Use a consistent and more modern approach to not use a parameter.

A remarkably creative and diverse set of approaches to letting the
compiler know that opaque was being used when it wasn't is changed
by this commit to the more standard (void)opaque.

f77c982... by Mark Adler <email address hidden>

Use UTF-8 for non-ASCII characters in ChangeLog.

44ae761... by Mark Adler <email address hidden>

Clean up portability for shifts and integer sizes.

e54e129... by Mark Adler <email address hidden>

Avoid shifts of negative values inflateMark().

The C standard says that bit shifts of negative integers is
undefined. This casts to unsigned values to assure a known
result.

27ef026... by Mark Adler <email address hidden>

Fix typo.

82e9dc6... by Mark Adler <email address hidden>

Use const for static tree descriptions in deflate.

This is in order to permit shared memory for these structures.

55d98b4... by Mark Adler <email address hidden>

Allow building zlib outside of the source directory.

To build, simply run configure from the source directory by
specifying its path. That path will be used to find the source
files. The source directory will not be touched. All new and
modified files will be made in the current directory. Discovered
in the process that not all makes understand % or $<, and not all
compilers understand -include or -I-. This required a larger
Makefile.in with explicit dependencies.

bfcace0... by Mark Adler <email address hidden>

Do not initialize unsigned with -1 in compress.c uncompr.c.

Sun compiler complained. Use (unsigned)0 - 1 instead.

43bfaba... by Mark Adler <email address hidden>

Align deflateParams() and its documentation in zlib.h.

This updates the documentation to reflect the behavior of
deflateParams() when it is not able to compress all of the input
data provided so far due to insufficient output space. It also
assures that data provided is compressed before the parameter
changes, even if at the beginning of the stream.

b4ce6ca... by Mark Adler <email address hidden>

Compile the gzopen_w() function when __CYGWIN__ defined.