mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-12 11:57:11 +02:00
bin
cmake
module
Base
Core
Entity
Library
Misc
Vendor
AES256
B64
Hash
MDBC
cmake
examples
include
libmariadb
mariadb_config
plugins
win
win-iconv
zlib
amiga
contrib
ada
buffer_demo.adb
mtest.adb
read.adb
readme.txt
test.adb
zlib-streams.adb
zlib-streams.ads
zlib-thin.adb
zlib-thin.ads
zlib.adb
zlib.ads
zlib.gpr
amd64
asm686
blast
delphi
dotzlib
gcc_gvmat64
infback9
inflate86
iostream
iostream2
iostream3
masmx64
masmx86
minizip
pascal
puff
testzlib
untgz
vstudio
README.contrib
doc
examples
msdos
nintendods
old
os400
qnx
test
watcom
win32
CMakeLists.txt
ChangeLog
FAQ
INDEX
Makefile
Makefile.in
README
adler32.c
compress.c
configure
crc32.c
crc32.h
deflate.c
deflate.h
gzclose.c
gzguts.h
gzlib.c
gzread.c
gzwrite.c
infback.c
inffast.c
inffast.h
inffixed.h
inflate.c
inflate.h
inftrees.c
inftrees.h
make_vms.com
treebuild.xml
trees.c
trees.h
uncompr.c
zconf.h.cmakein
zconf.h.in
zconf.h.included
zlib.3
zlib.3.pdf
zlib.h
zlib.map
zlib.pc.cmakein
zlib.pc.in
zlib2ansi
zutil.c
zutil.h
CMakeLists.txt
COPYING.LIB
README
MaxmindDB
PUGIXML
SQLite
SimpleIni
SimpleSocket
TinyDir
Whirlpool
CMakeLists.txt
CMakeLists.txt
Core.cpp
Core.hpp
Logger.cpp
Logger.hpp
Main.cpp
Register.cpp
SqBase.hpp
sdk
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
66 lines
2.1 KiB
Plaintext
66 lines
2.1 KiB
Plaintext
ZLib for Ada thick binding (ZLib.Ada)
|
|
Release 1.3
|
|
|
|
ZLib.Ada is a thick binding interface to the popular ZLib data
|
|
compression library, available at http://www.gzip.org/zlib/.
|
|
It provides Ada-style access to the ZLib C library.
|
|
|
|
|
|
Here are the main changes since ZLib.Ada 1.2:
|
|
|
|
- Attension: ZLib.Read generic routine have a initialization requirement
|
|
for Read_Last parameter now. It is a bit incompartible with previous version,
|
|
but extends functionality, we could use new parameters Allow_Read_Some and
|
|
Flush now.
|
|
|
|
- Added Is_Open routines to ZLib and ZLib.Streams packages.
|
|
|
|
- Add pragma Assert to check Stream_Element is 8 bit.
|
|
|
|
- Fix extraction to buffer with exact known decompressed size. Error reported by
|
|
Steve Sangwine.
|
|
|
|
- Fix definition of ULong (changed to unsigned_long), fix regression on 64 bits
|
|
computers. Patch provided by Pascal Obry.
|
|
|
|
- Add Status_Error exception definition.
|
|
|
|
- Add pragma Assertion that Ada.Streams.Stream_Element size is 8 bit.
|
|
|
|
|
|
How to build ZLib.Ada under GNAT
|
|
|
|
You should have the ZLib library already build on your computer, before
|
|
building ZLib.Ada. Make the directory of ZLib.Ada sources current and
|
|
issue the command:
|
|
|
|
gnatmake test -largs -L<directory where libz.a is> -lz
|
|
|
|
Or use the GNAT project file build for GNAT 3.15 or later:
|
|
|
|
gnatmake -Pzlib.gpr -L<directory where libz.a is>
|
|
|
|
|
|
How to build ZLib.Ada under Aonix ObjectAda for Win32 7.2.2
|
|
|
|
1. Make a project with all *.ads and *.adb files from the distribution.
|
|
2. Build the libz.a library from the ZLib C sources.
|
|
3. Rename libz.a to z.lib.
|
|
4. Add the library z.lib to the project.
|
|
5. Add the libc.lib library from the ObjectAda distribution to the project.
|
|
6. Build the executable using test.adb as a main procedure.
|
|
|
|
|
|
How to use ZLib.Ada
|
|
|
|
The source files test.adb and read.adb are small demo programs that show
|
|
the main functionality of ZLib.Ada.
|
|
|
|
The routines from the package specifications are commented.
|
|
|
|
|
|
Homepage: http://zlib-ada.sourceforge.net/
|
|
Author: Dmitriy Anisimkov <anisimkov@yahoo.com>
|
|
|
|
Contributors: Pascal Obry <pascal@obry.org>, Steve Sangwine <sjs@essex.ac.uk>
|