]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
zlib: split up to match original source tree
authorMike Frysinger <vapier@gentoo.org>
Fri, 8 Apr 2011 12:23:30 +0000 (12:23 +0000)
committerWolfgang Denk <wd@denx.de>
Sat, 30 Apr 2011 18:21:45 +0000 (20:21 +0200)
commite89516f031dbf711b71e6ee4d131cdc8b9946fb0
treecb36d506165e971849cc1237565798fcc236af0b
parent56c1769806a437c994355422f5b52ca3eee70834
zlib: split up to match original source tree

While looking to upgrade to zlib-1.2.5, the current mondo merge of
multiple files into a single was making things way more difficult
than it should have been.  Hard to pick out what has been changed
to port it to U-Boot, been removed as useless, and bug fixes added
after the fact.

So split the single file up into the original file names, and merge
non-essential changes back from the original tree (for some reason,
style in code in a bunch of places was changed to U-Boot style even
though this isn't "U-Boot" code).

The original build style is retained -- we have a single zlib.c that
includes all the other files, and that is the only file we compile.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16 files changed:
Makefile
lib/Makefile
lib/zlib.c [deleted file]
lib/zlib/Makefile [new file with mode: 0644]
lib/zlib/adler32.c [new file with mode: 0644]
lib/zlib/inffast.c [new file with mode: 0644]
lib/zlib/inffast.h [new file with mode: 0644]
lib/zlib/inffixed.h [new file with mode: 0644]
lib/zlib/inflate.c [new file with mode: 0644]
lib/zlib/inflate.h [new file with mode: 0644]
lib/zlib/inftrees.c [new file with mode: 0644]
lib/zlib/inftrees.h [new file with mode: 0644]
lib/zlib/zlib.c [new file with mode: 0644]
lib/zlib/zlib.h [new file with mode: 0644]
lib/zlib/zutil.c [new file with mode: 0644]
lib/zlib/zutil.h [new file with mode: 0644]