Mercurial > flash_v2
comparison packages/services/compress/zlib/current/src/FAQ @ 1369:c92d7972c02c
* tests/zlib[12].c: Modified the text to the gcc3.3 friendly.
* Upgrade to zlib 1.1.4 and additional fix for inflate bug on
machines with 16-bit pointers.
| author | asl |
|---|---|
| date | Thu, 20 Nov 2003 09:28:06 +0000 |
| parents | b939e9cada46 |
| children | 91a37e2314f4 |
comparison
equal
deleted
inserted
replaced
| 1368:7a48ba3056e6 | 1369:c92d7972c02c |
|---|---|
| 1 | 1 |
| 2 Frequently Asked Questions about zlib | 2 Frequently Asked Questions about zlib |
| 3 | 3 |
| 4 | 4 |
| 5 If your question is not there, please check the zlib home page | 5 If your question is not there, please check the zlib home page |
| 6 http://www.cdrom.com/pub/infozip/zlib/ which may have more recent information. | 6 http://www.zlib.org which may have more recent information. |
| 7 The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html | |
| 7 | 8 |
| 8 | 9 |
| 9 1) I need a Windows DLL | 10 1. Is zlib Y2K-compliant? |
| 10 2) I need a Visual Basic interface to zlib | |
| 11 3) compress() returns Z_BUF_ERROR | |
| 12 4) deflate or inflate returns Z_BUF_ERROR | |
| 13 5) Where is the zlib documentation (man pages, etc...)? | |
| 14 6) Why don't you use GNU autoconf, libtool, etc...? | |
| 15 7) There is a bug in zlib. | |
| 16 8) I get "undefined reference to gzputc" | |
| 17 | 11 |
| 12 Yes. zlib doesn't handle dates. | |
| 18 | 13 |
| 14 2. Where can I get a Windows DLL version? | |
| 19 | 15 |
| 20 1) I need a Windows DLL | 16 The zlib sources can be compiled without change to produce a DLL. If you |
| 17 want a precompiled DLL, see http://www.winimage.com/zLibDll/ . Questions | |
| 18 about the zlib DLL should be sent to Gilles Vollant (info@winimage.com). | |
| 21 | 19 |
| 22 The zlib sources can be compiled without change to produce a DLL. | 20 3. Where can I get a Visual Basic interface to zlib? |
| 23 If you want a precompiled DLL, see http://www.winimage.com/zLibDll | |
| 24 | 21 |
| 22 See | |
| 23 * http://www.winimage.com/zLibDll/cmp-z-it.zip | |
| 24 * http://www.dogma.net/markn/articles/zlibtool/zlibtool.htm | |
| 25 * contrib/visual-basic.txt in the zlib distribution | |
| 25 | 26 |
| 26 2) I need a Visual Basic interface to zlib | 27 4. compress() returns Z_BUF_ERROR |
| 27 | 28 |
| 28 See http://www.tcfb.com/dowseware/cmp-z-it.zip | 29 Make sure that before the call of compress, the length of the compressed |
| 29 http://web2.airmail.net/markn/articles/zlibtool/zlibtool.htm | 30 buffer is equal to the total size of the compressed buffer and not |
| 30 and contrib/visual-basic.txt | 31 zero. For Visual Basic, check that this parameter is passed by reference |
| 32 ("as any"), not by value ("as long"). | |
| 31 | 33 |
| 32 3) compress() returns Z_BUF_ERROR | 34 5. deflate() or inflate() returns Z_BUF_ERROR |
| 33 | 35 |
| 34 Make sure that before the call of compress, the length of the | 36 Before making the call, make sure that avail_in and avail_out are not |
| 35 compressed buffer is equal to the total size of the compressed buffer | 37 zero. When setting the parameter flush equal to Z_FINISH, also make sure |
| 36 and not zero. For Visual Basic, check that this parameter is passed | 38 that avail_out is big enough to allow processing all pending input. |
| 37 by reference ("as any"), not by value ("as long"). | |
| 38 | 39 |
| 40 6. Where's the zlib documentation (man pages, etc.)? | |
| 39 | 41 |
| 40 4) deflate or inflate returns Z_BUF_ERROR | 42 It's in zlib.h for the moment, and Francis S. Lin has converted it to a |
| 43 web page zlib.html. Volunteers to transform this to Unix-style man pages, | |
| 44 please contact Jean-loup Gailly (jloup@gzip.org). Examples of zlib usage | |
| 45 are in the files example.c and minigzip.c. | |
| 41 | 46 |
| 42 Make sure that before the call avail_in and avail_out are not zero. | 47 7. Why don't you use GNU autoconf or libtool or ...? |
| 43 | 48 |
| 49 Because we would like to keep zlib as a very small and simple | |
| 50 package. zlib is rather portable and doesn't need much configuration. | |
| 44 | 51 |
| 45 5) Where is the zlib documentation (man pages, etc...)? | 52 8. I found a bug in zlib. |
| 46 | 53 |
| 47 It's in zlib.h for the moment. Volunteers to transform this | 54 Most of the time, such problems are due to an incorrect usage of |
| 48 to man pages, please contact jloup@gzip.org. Examples of zlib usage | 55 zlib. Please try to reproduce the problem with a small program and send |
| 49 are in the files example.c and minigzip.c. | 56 the corresponding source to us at zlib@gzip.org . Do not send |
| 57 multi-megabyte data files without prior agreement. | |
| 50 | 58 |
| 59 9. Why do I get "undefined reference to gzputc"? | |
| 51 | 60 |
| 52 6) Why don't you use GNU autoconf, libtool, etc...? | 61 If "make test" produces something like |
| 53 | 62 |
| 54 Because we would like to keep zlib as a very small and simple package. | 63 example.o(.text+0x154): undefined reference to `gzputc' |
| 55 zlib is rather portable and doesn't need much configuration. | 64 |
| 65 check that you don't have old files libz.* in /usr/lib, /usr/local/lib or | |
| 66 /usr/X11R6/lib. Remove any old versions, then do "make install". | |
| 56 | 67 |
| 68 10. I need a Delphi interface to zlib. | |
| 57 | 69 |
| 58 7) There is a bug in zlib. | 70 See the directories contrib/delphi and contrib/delphi2 in the zlib |
| 71 distribution. | |
| 59 | 72 |
| 60 Most of the time, such problems are due to an incorrect usage | 73 11. Can zlib handle .zip archives? |
| 61 of zlib. Please try to reproduce the problem with a small | |
| 62 program and send us the corresponding source at zlib@quest.jpl.nasa.gov | |
| 63 Do not send multi-megabyte data files without prior agreement. | |
| 64 | 74 |
| 75 See the directory contrib/minizip in the zlib distribution. | |
| 65 | 76 |
| 66 8) I get "undefined reference to gzputc" | 77 12. Can zlib handle .Z files? |
| 67 | 78 |
| 68 If "make test" produces something like | 79 No, sorry. You have to spawn an uncompress or gunzip subprocess, or adapt |
| 69 example.o(.text+0x174): | 80 the code of uncompress on your own. |
| 70 check that you don't have old files libz.* in /usr/lib, /usr/local/lib | |
| 71 or /usr/X11R6/lib. Remove old versions then do "make install". | |
| 72 | 81 |
| 82 13. How can I make a Unix shared library? | |
| 83 | |
| 84 make clean | |
| 85 ./configure -s | |
| 86 make | |
| 87 | |
| 88 14. Why does "make test" fail on Mac OS X? | |
| 89 | |
| 90 Mac OS X already includes zlib as a shared library, and so -lz links the | |
| 91 shared library instead of the one that the "make" compiled. For zlib | |
| 92 1.1.3, the two are incompatible due to different compile-time | |
| 93 options. Simply change the -lz in the Makefile to libz.a, and it will use | |
| 94 the compiled library instead of the shared one and the "make test" will | |
| 95 succeed. | |
| 96 | |
| 97 15. I have a question about OttoPDF | |
| 98 | |
| 99 We are not the authors of OttoPDF. The real author is on the OttoPDF web | |
| 100 site Joel Hainley jhainley@myndkryme.com. |
