freetype2/src/gzip
David Turner 843d03e36d [gzip] Update sources to zlib 1.2.11
* src/gzip/ftgzip.c, src/gzip/rules.mk: Updated for new zlib
  sources. Also removed the temporary fix introduced in
  commit 6a431038 [1] to work-around the fact that the
  internal sources were too old.

* src/gzip/README.freetype: Small README file
  describing the origin of the sources and how they
  were modified.

* src/gzip/patches/*: Patch files applied to original
  sources.

* src/gzip/*: Updated all zlib sources to 1.2.11 plus
  the patch from src/gzip/patches/ applied.

This can be tested by building with the Unix development build:

  make setup devel
  make

Or by building the freetype-demos programs with:

  meson setup build -Dfreetype2:zlib=internal
  meson compile -C out

Then trying to run 'ftview' with a .pcf.gz font file.

[1] 6a431038c9
2021-08-19 09:04:03 +02:00
..
patches [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
README.freetype [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
adler32.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
crc32.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
crc32.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
ftgzip.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
ftzconf.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
gzguts.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
infback.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inffast.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inffast.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inffixed.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inflate.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inflate.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inftrees.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
inftrees.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
rules.mk [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
zlib.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
zutil.c [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00
zutil.h [gzip] Update sources to zlib 1.2.11 2021-08-19 09:04:03 +02:00

README.freetype

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Name: zlib
Short Name: zlib
URL: http://zlib.net/
Version: 1.2.11
License: See zlib.h

Description:
"A massively spiffy yet delicately unobtrusive compression library."

zlib is a free, general-purpose, legally unencumbered lossless data-compression
library. zlib implements the "deflate" compression algorithm described by RFC
1951, which combines the LZ77 (Lempel-Ziv) algorithm with Huffman coding. zlib
also implements the zlib (RFC 1950) and gzip (RFC 1952) wrapper formats.

Local Modifications:
 - Only source code from the zlib distribution used to build the zlib
   decompression needed by ftgzip.c.
 - Plus the changes in 'patches' folder.