- external/libpng
+ external/png
* external/png/Makefile
* external/libhpdf/Makefile
* external/Makefile
* harbour.spec
* contrib/hbhpdf/hbhpdf.hbc
* contrib/hbwin/hbwin.hbc
* Renamed locally hosted libpng lib name from 'libpng'
to 'png'.
This way Harbour shifts to the *nix naming and syncs
better with these systems. On Windows the "most official"
binary builds still use 'libpng', so if someone uses them
instead of locally hosted version (which is not very likely)
the .hbc files shipped with Harbour should be edited
accordingly. This change also satisfies past request from
some users.
; NOTE: INCOMPATIBLE, pls change lib name 'libpng' to 'png'
for all platforms in your make files.
* contrib/hbhpdf/tests/harupdf.prg
* Indentation.
* Formatting.
* external/minizip/readme.txt
* Deleted paths from filenames.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
This folder contains compression related files including:
|
|
* zip file support based on minizip library (http://www.winimage.com/zLibDll/minizip.html)
|
|
including:
|
|
* minizip version 1.1 source files
|
|
|
|
Some small changes (to fix compile time warning and errors) are applied to original
|
|
source of minizip 1.1:
|
|
|
|
* zip.c
|
|
* added forward definitions of allocate_new_datablock(),
|
|
free_datablock(), init_linkedlist(), add_data_in_datablock(),
|
|
ziplocal_TmzDateToDosDate()
|
|
* pacified warnings of unused args dosDate and crcForCrypting
|
|
* fixed 2 warnings: assigned value is not used. See, TOFIX
|
|
comment for one of the fixes
|
|
* fixed BCC warning "function call with no prototype" by changing
|
|
local int zipFlushWriteBuffer(zi)
|
|
zip_internal* zi;
|
|
{
|
|
to
|
|
local int zipFlushWriteBuffer(zip_internal* zi)
|
|
{
|
|
I expected this code be equivavlent! ??? :/
|
|
|
|
* unzip.c
|
|
* added forward definitions of strcmpcasenosensitive_internal(),
|
|
unzlocal_DosDateToTmuDate(), unzlocal_CheckCurrentFileCoherencyHeader()
|
|
* fixed 8 warnings: assigned value is not used. See, TOFIX
|
|
comment for one of the fixes
|
|
|
|
* ioapi.c
|
|
* pacified 7 warnings: unused args opaque
|
|
* fixed warning: assigned value is not used
|