bio-velvet_underground 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.travis.yml +13 -0
- data/Gemfile +19 -0
- data/LICENSE.txt +20 -0
- data/README.md +53 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/ext/bioruby.patch +60 -0
- data/ext/mkrf_conf.rb +50 -0
- data/ext/src/Makefile +125 -0
- data/ext/src/src/allocArray.c +305 -0
- data/ext/src/src/allocArray.h +86 -0
- data/ext/src/src/autoOpen.c +107 -0
- data/ext/src/src/autoOpen.h +18 -0
- data/ext/src/src/binarySequences.c +813 -0
- data/ext/src/src/binarySequences.h +125 -0
- data/ext/src/src/concatenatedGraph.c +233 -0
- data/ext/src/src/concatenatedGraph.h +30 -0
- data/ext/src/src/concatenatedPreGraph.c +262 -0
- data/ext/src/src/concatenatedPreGraph.h +29 -0
- data/ext/src/src/correctedGraph.c +2642 -0
- data/ext/src/src/correctedGraph.h +32 -0
- data/ext/src/src/dfib.c +509 -0
- data/ext/src/src/dfib.h +69 -0
- data/ext/src/src/dfibHeap.c +89 -0
- data/ext/src/src/dfibHeap.h +39 -0
- data/ext/src/src/dfibpriv.h +105 -0
- data/ext/src/src/fib.c +628 -0
- data/ext/src/src/fib.h +78 -0
- data/ext/src/src/fibHeap.c +79 -0
- data/ext/src/src/fibHeap.h +41 -0
- data/ext/src/src/fibpriv.h +110 -0
- data/ext/src/src/globals.h +153 -0
- data/ext/src/src/graph.c +3983 -0
- data/ext/src/src/graph.h +233 -0
- data/ext/src/src/graphReConstruction.c +1472 -0
- data/ext/src/src/graphReConstruction.h +30 -0
- data/ext/src/src/graphStats.c +2167 -0
- data/ext/src/src/graphStats.h +72 -0
- data/ext/src/src/kmer.c +652 -0
- data/ext/src/src/kmer.h +73 -0
- data/ext/src/src/kmerOccurenceTable.c +236 -0
- data/ext/src/src/kmerOccurenceTable.h +44 -0
- data/ext/src/src/kseq.h +223 -0
- data/ext/src/src/locallyCorrectedGraph.c +557 -0
- data/ext/src/src/locallyCorrectedGraph.h +40 -0
- data/ext/src/src/passageMarker.c +677 -0
- data/ext/src/src/passageMarker.h +137 -0
- data/ext/src/src/preGraph.c +1717 -0
- data/ext/src/src/preGraph.h +106 -0
- data/ext/src/src/preGraphConstruction.c +990 -0
- data/ext/src/src/preGraphConstruction.h +26 -0
- data/ext/src/src/readCoherentGraph.c +557 -0
- data/ext/src/src/readCoherentGraph.h +30 -0
- data/ext/src/src/readSet.c +1734 -0
- data/ext/src/src/readSet.h +67 -0
- data/ext/src/src/recycleBin.c +199 -0
- data/ext/src/src/recycleBin.h +58 -0
- data/ext/src/src/roadMap.c +342 -0
- data/ext/src/src/roadMap.h +65 -0
- data/ext/src/src/run.c +318 -0
- data/ext/src/src/run.h +52 -0
- data/ext/src/src/run2.c +712 -0
- data/ext/src/src/scaffold.c +1876 -0
- data/ext/src/src/scaffold.h +64 -0
- data/ext/src/src/shortReadPairs.c +1243 -0
- data/ext/src/src/shortReadPairs.h +32 -0
- data/ext/src/src/splay.c +259 -0
- data/ext/src/src/splay.h +43 -0
- data/ext/src/src/splayTable.c +1315 -0
- data/ext/src/src/splayTable.h +31 -0
- data/ext/src/src/tightString.c +362 -0
- data/ext/src/src/tightString.h +82 -0
- data/ext/src/src/utility.c +199 -0
- data/ext/src/src/utility.h +98 -0
- data/ext/src/third-party/zlib-1.2.3/ChangeLog +855 -0
- data/ext/src/third-party/zlib-1.2.3/FAQ +339 -0
- data/ext/src/third-party/zlib-1.2.3/INDEX +51 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile +154 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile.in +154 -0
- data/ext/src/third-party/zlib-1.2.3/README +125 -0
- data/ext/src/third-party/zlib-1.2.3/adler32.c +149 -0
- data/ext/src/third-party/zlib-1.2.3/algorithm.txt +209 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup +66 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas +65 -0
- data/ext/src/third-party/zlib-1.2.3/as400/bndsrc +132 -0
- data/ext/src/third-party/zlib-1.2.3/as400/compile.clp +123 -0
- data/ext/src/third-party/zlib-1.2.3/as400/readme.txt +111 -0
- data/ext/src/third-party/zlib-1.2.3/as400/zlib.inc +331 -0
- data/ext/src/third-party/zlib-1.2.3/compress.c +79 -0
- data/ext/src/third-party/zlib-1.2.3/configure +459 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/README.contrib +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt +65 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb +463 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb +225 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads +114 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads +450 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb +701 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads +328 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr +20 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586 +43 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S +364 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686 +34 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/README +4 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c +444 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas +557 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas +11 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build +33 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/README +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c +608 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h +37 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h +107 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h +47 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c +323 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c +1157 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S +1368 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp +24 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h +307 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/README +35 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc +50 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc +479 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h +466 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm +413 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm +513 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c +186 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm +392 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt +28 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm +972 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c +62 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm +1083 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat +3 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip +67 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h +132 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c +177 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h +75 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c +270 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c +585 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c +420 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c +281 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c +1598 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h +354 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h +235 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas +599 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas +236 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/README +63 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c +837 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c +275 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt +10 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile +14 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c +674 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj +246 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln +78 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj +445 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj +566 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj +563 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj +948 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj +567 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj +870 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln +144 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj +1219 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.c +423 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.h +441 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.c +1736 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.h +331 -0
- data/ext/src/third-party/zlib-1.2.3/example.c +565 -0
- data/ext/src/third-party/zlib-1.2.3/examples/README.examples +42 -0
- data/ext/src/third-party/zlib-1.2.3/examples/fitblk.c +233 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gun.c +693 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzappend.c +500 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzjoin.c +448 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.c +413 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.h +58 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zlib_how.html +523 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zpipe.c +191 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zran.c +404 -0
- data/ext/src/third-party/zlib-1.2.3/gzio.c +1026 -0
- data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.h +11 -0
- data/ext/src/third-party/zlib-1.2.3/inffixed.h +94 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.c +1368 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.h +115 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.c +329 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/make_vms.com +461 -0
- data/ext/src/third-party/zlib-1.2.3/minigzip.c +322 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor +109 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2 +104 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc +106 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc +94 -0
- data/ext/src/third-party/zlib-1.2.3/old/Makefile.riscos +151 -0
- data/ext/src/third-party/zlib-1.2.3/old/README +3 -0
- data/ext/src/third-party/zlib-1.2.3/old/descrip.mms +48 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2 +136 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/zlib.def +51 -0
- data/ext/src/third-party/zlib-1.2.3/old/visual-basic.txt +160 -0
- data/ext/src/third-party/zlib-1.2.3/old/zlib.html +971 -0
- data/ext/src/third-party/zlib-1.2.3/projects/README.projects +41 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp +609 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw +59 -0
- data/ext/src/third-party/zlib-1.2.3/qnx/package.qpg +141 -0
- data/ext/src/third-party/zlib-1.2.3/trees.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/trees.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
- data/ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt +397 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.bor +107 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc +141 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.msc +126 -0
- data/ext/src/third-party/zlib-1.2.3/win32/VisualC.txt +3 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib.def +60 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib1.rc +39 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.in.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.3 +159 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.h +1357 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.h +269 -0
- data/lib/bio-velvet_underground.rb +12 -0
- data/lib/bio-velvet_underground/external/VERSION +1 -0
- data/lib/bio-velvet_underground/velvet_underground.rb +72 -0
- data/spec/binary_sequence_store_spec.rb +27 -0
- data/spec/data/1/CnyUnifiedSeq +0 -0
- data/spec/spec_helper.rb +31 -0
- metadata +456 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
LIBRARY
|
2
|
+
; zlib data compression library
|
3
|
+
|
4
|
+
EXPORTS
|
5
|
+
; basic functions
|
6
|
+
zlibVersion
|
7
|
+
deflate
|
8
|
+
deflateEnd
|
9
|
+
inflate
|
10
|
+
inflateEnd
|
11
|
+
; advanced functions
|
12
|
+
deflateSetDictionary
|
13
|
+
deflateCopy
|
14
|
+
deflateReset
|
15
|
+
deflateParams
|
16
|
+
deflateBound
|
17
|
+
deflatePrime
|
18
|
+
inflateSetDictionary
|
19
|
+
inflateSync
|
20
|
+
inflateCopy
|
21
|
+
inflateReset
|
22
|
+
inflateBack
|
23
|
+
inflateBackEnd
|
24
|
+
zlibCompileFlags
|
25
|
+
; utility functions
|
26
|
+
compress
|
27
|
+
compress2
|
28
|
+
compressBound
|
29
|
+
uncompress
|
30
|
+
gzopen
|
31
|
+
gzdopen
|
32
|
+
gzsetparams
|
33
|
+
gzread
|
34
|
+
gzwrite
|
35
|
+
gzprintf
|
36
|
+
gzputs
|
37
|
+
gzgets
|
38
|
+
gzputc
|
39
|
+
gzgetc
|
40
|
+
gzungetc
|
41
|
+
gzflush
|
42
|
+
gzseek
|
43
|
+
gzrewind
|
44
|
+
gztell
|
45
|
+
gzeof
|
46
|
+
gzclose
|
47
|
+
gzerror
|
48
|
+
gzclearerr
|
49
|
+
; checksum functions
|
50
|
+
adler32
|
51
|
+
crc32
|
52
|
+
; various hacks, don't look :)
|
53
|
+
deflateInit_
|
54
|
+
deflateInit2_
|
55
|
+
inflateInit_
|
56
|
+
inflateInit2_
|
57
|
+
inflateBackInit_
|
58
|
+
inflateSyncPoint
|
59
|
+
get_crc_table
|
60
|
+
zError
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#include <windows.h>
|
2
|
+
|
3
|
+
#ifdef GCC_WINDRES
|
4
|
+
VS_VERSION_INFO VERSIONINFO
|
5
|
+
#else
|
6
|
+
VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
|
7
|
+
#endif
|
8
|
+
FILEVERSION 1,2,2,0
|
9
|
+
PRODUCTVERSION 1,2,2,0
|
10
|
+
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
11
|
+
#ifdef _DEBUG
|
12
|
+
FILEFLAGS 1
|
13
|
+
#else
|
14
|
+
FILEFLAGS 0
|
15
|
+
#endif
|
16
|
+
FILEOS VOS_DOS_WINDOWS32
|
17
|
+
FILETYPE VFT_DLL
|
18
|
+
FILESUBTYPE 0 // not used
|
19
|
+
BEGIN
|
20
|
+
BLOCK "StringFileInfo"
|
21
|
+
BEGIN
|
22
|
+
BLOCK "040904E4"
|
23
|
+
//language ID = U.S. English, char set = Windows, Multilingual
|
24
|
+
BEGIN
|
25
|
+
VALUE "FileDescription", "zlib data compression library\0"
|
26
|
+
VALUE "FileVersion", "1.2.3\0"
|
27
|
+
VALUE "InternalName", "zlib1.dll\0"
|
28
|
+
VALUE "LegalCopyright", "(C) 1995-2004 Jean-loup Gailly & Mark Adler\0"
|
29
|
+
VALUE "OriginalFilename", "zlib1.dll\0"
|
30
|
+
VALUE "ProductName", "zlib\0"
|
31
|
+
VALUE "ProductVersion", "1.2.3\0"
|
32
|
+
VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
33
|
+
END
|
34
|
+
END
|
35
|
+
BLOCK "VarFileInfo"
|
36
|
+
BEGIN
|
37
|
+
VALUE "Translation", 0x0409, 1252
|
38
|
+
END
|
39
|
+
END
|
@@ -0,0 +1,332 @@
|
|
1
|
+
/* zconf.h -- configuration of the zlib compression library
|
2
|
+
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
3
|
+
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* @(#) $Id$ */
|
7
|
+
|
8
|
+
#ifndef ZCONF_H
|
9
|
+
#define ZCONF_H
|
10
|
+
|
11
|
+
/*
|
12
|
+
* If you *really* need a unique prefix for all types and library functions,
|
13
|
+
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
14
|
+
*/
|
15
|
+
#ifdef Z_PREFIX
|
16
|
+
# define deflateInit_ z_deflateInit_
|
17
|
+
# define deflate z_deflate
|
18
|
+
# define deflateEnd z_deflateEnd
|
19
|
+
# define inflateInit_ z_inflateInit_
|
20
|
+
# define inflate z_inflate
|
21
|
+
# define inflateEnd z_inflateEnd
|
22
|
+
# define deflateInit2_ z_deflateInit2_
|
23
|
+
# define deflateSetDictionary z_deflateSetDictionary
|
24
|
+
# define deflateCopy z_deflateCopy
|
25
|
+
# define deflateReset z_deflateReset
|
26
|
+
# define deflateParams z_deflateParams
|
27
|
+
# define deflateBound z_deflateBound
|
28
|
+
# define deflatePrime z_deflatePrime
|
29
|
+
# define inflateInit2_ z_inflateInit2_
|
30
|
+
# define inflateSetDictionary z_inflateSetDictionary
|
31
|
+
# define inflateSync z_inflateSync
|
32
|
+
# define inflateSyncPoint z_inflateSyncPoint
|
33
|
+
# define inflateCopy z_inflateCopy
|
34
|
+
# define inflateReset z_inflateReset
|
35
|
+
# define inflateBack z_inflateBack
|
36
|
+
# define inflateBackEnd z_inflateBackEnd
|
37
|
+
# define compress z_compress
|
38
|
+
# define compress2 z_compress2
|
39
|
+
# define compressBound z_compressBound
|
40
|
+
# define uncompress z_uncompress
|
41
|
+
# define adler32 z_adler32
|
42
|
+
# define crc32 z_crc32
|
43
|
+
# define get_crc_table z_get_crc_table
|
44
|
+
# define zError z_zError
|
45
|
+
|
46
|
+
# define alloc_func z_alloc_func
|
47
|
+
# define free_func z_free_func
|
48
|
+
# define in_func z_in_func
|
49
|
+
# define out_func z_out_func
|
50
|
+
# define Byte z_Byte
|
51
|
+
# define uInt z_uInt
|
52
|
+
# define uLong z_uLong
|
53
|
+
# define Bytef z_Bytef
|
54
|
+
# define charf z_charf
|
55
|
+
# define intf z_intf
|
56
|
+
# define uIntf z_uIntf
|
57
|
+
# define uLongf z_uLongf
|
58
|
+
# define voidpf z_voidpf
|
59
|
+
# define voidp z_voidp
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#if defined(__MSDOS__) && !defined(MSDOS)
|
63
|
+
# define MSDOS
|
64
|
+
#endif
|
65
|
+
#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
|
66
|
+
# define OS2
|
67
|
+
#endif
|
68
|
+
#if defined(_WINDOWS) && !defined(WINDOWS)
|
69
|
+
# define WINDOWS
|
70
|
+
#endif
|
71
|
+
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
|
72
|
+
# ifndef WIN32
|
73
|
+
# define WIN32
|
74
|
+
# endif
|
75
|
+
#endif
|
76
|
+
#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
|
77
|
+
# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
|
78
|
+
# ifndef SYS16BIT
|
79
|
+
# define SYS16BIT
|
80
|
+
# endif
|
81
|
+
# endif
|
82
|
+
#endif
|
83
|
+
|
84
|
+
/*
|
85
|
+
* Compile with -DMAXSEG_64K if the alloc function cannot allocate more
|
86
|
+
* than 64k bytes at a time (needed on systems with 16-bit int).
|
87
|
+
*/
|
88
|
+
#ifdef SYS16BIT
|
89
|
+
# define MAXSEG_64K
|
90
|
+
#endif
|
91
|
+
#ifdef MSDOS
|
92
|
+
# define UNALIGNED_OK
|
93
|
+
#endif
|
94
|
+
|
95
|
+
#ifdef __STDC_VERSION__
|
96
|
+
# ifndef STDC
|
97
|
+
# define STDC
|
98
|
+
# endif
|
99
|
+
# if __STDC_VERSION__ >= 199901L
|
100
|
+
# ifndef STDC99
|
101
|
+
# define STDC99
|
102
|
+
# endif
|
103
|
+
# endif
|
104
|
+
#endif
|
105
|
+
#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
|
106
|
+
# define STDC
|
107
|
+
#endif
|
108
|
+
#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
|
109
|
+
# define STDC
|
110
|
+
#endif
|
111
|
+
#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
|
112
|
+
# define STDC
|
113
|
+
#endif
|
114
|
+
#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
|
115
|
+
# define STDC
|
116
|
+
#endif
|
117
|
+
|
118
|
+
#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
|
119
|
+
# define STDC
|
120
|
+
#endif
|
121
|
+
|
122
|
+
#ifndef STDC
|
123
|
+
# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
|
124
|
+
# define const /* note: need a more gentle solution here */
|
125
|
+
# endif
|
126
|
+
#endif
|
127
|
+
|
128
|
+
/* Some Mac compilers merge all .h files incorrectly: */
|
129
|
+
#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
|
130
|
+
# define NO_DUMMY_DECL
|
131
|
+
#endif
|
132
|
+
|
133
|
+
/* Maximum value for memLevel in deflateInit2 */
|
134
|
+
#ifndef MAX_MEM_LEVEL
|
135
|
+
# ifdef MAXSEG_64K
|
136
|
+
# define MAX_MEM_LEVEL 8
|
137
|
+
# else
|
138
|
+
# define MAX_MEM_LEVEL 9
|
139
|
+
# endif
|
140
|
+
#endif
|
141
|
+
|
142
|
+
/* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
143
|
+
* WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
|
144
|
+
* created by gzip. (Files created by minigzip can still be extracted by
|
145
|
+
* gzip.)
|
146
|
+
*/
|
147
|
+
#ifndef MAX_WBITS
|
148
|
+
# define MAX_WBITS 15 /* 32K LZ77 window */
|
149
|
+
#endif
|
150
|
+
|
151
|
+
/* The memory requirements for deflate are (in bytes):
|
152
|
+
(1 << (windowBits+2)) + (1 << (memLevel+9))
|
153
|
+
that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
|
154
|
+
plus a few kilobytes for small objects. For example, if you want to reduce
|
155
|
+
the default memory requirements from 256K to 128K, compile with
|
156
|
+
make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
|
157
|
+
Of course this will generally degrade compression (there's no free lunch).
|
158
|
+
|
159
|
+
The memory requirements for inflate are (in bytes) 1 << windowBits
|
160
|
+
that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
161
|
+
for small objects.
|
162
|
+
*/
|
163
|
+
|
164
|
+
/* Type declarations */
|
165
|
+
|
166
|
+
#ifndef OF /* function prototypes */
|
167
|
+
# ifdef STDC
|
168
|
+
# define OF(args) args
|
169
|
+
# else
|
170
|
+
# define OF(args) ()
|
171
|
+
# endif
|
172
|
+
#endif
|
173
|
+
|
174
|
+
/* The following definitions for FAR are needed only for MSDOS mixed
|
175
|
+
* model programming (small or medium model with some far allocations).
|
176
|
+
* This was tested only with MSC; for other MSDOS compilers you may have
|
177
|
+
* to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
|
178
|
+
* just define FAR to be empty.
|
179
|
+
*/
|
180
|
+
#ifdef SYS16BIT
|
181
|
+
# if defined(M_I86SM) || defined(M_I86MM)
|
182
|
+
/* MSC small or medium model */
|
183
|
+
# define SMALL_MEDIUM
|
184
|
+
# ifdef _MSC_VER
|
185
|
+
# define FAR _far
|
186
|
+
# else
|
187
|
+
# define FAR far
|
188
|
+
# endif
|
189
|
+
# endif
|
190
|
+
# if (defined(__SMALL__) || defined(__MEDIUM__))
|
191
|
+
/* Turbo C small or medium model */
|
192
|
+
# define SMALL_MEDIUM
|
193
|
+
# ifdef __BORLANDC__
|
194
|
+
# define FAR _far
|
195
|
+
# else
|
196
|
+
# define FAR far
|
197
|
+
# endif
|
198
|
+
# endif
|
199
|
+
#endif
|
200
|
+
|
201
|
+
#if defined(WINDOWS) || defined(WIN32)
|
202
|
+
/* If building or using zlib as a DLL, define ZLIB_DLL.
|
203
|
+
* This is not mandatory, but it offers a little performance increase.
|
204
|
+
*/
|
205
|
+
# ifdef ZLIB_DLL
|
206
|
+
# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
|
207
|
+
# ifdef ZLIB_INTERNAL
|
208
|
+
# define ZEXTERN extern __declspec(dllexport)
|
209
|
+
# else
|
210
|
+
# define ZEXTERN extern __declspec(dllimport)
|
211
|
+
# endif
|
212
|
+
# endif
|
213
|
+
# endif /* ZLIB_DLL */
|
214
|
+
/* If building or using zlib with the WINAPI/WINAPIV calling convention,
|
215
|
+
* define ZLIB_WINAPI.
|
216
|
+
* Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
|
217
|
+
*/
|
218
|
+
# ifdef ZLIB_WINAPI
|
219
|
+
# ifdef FAR
|
220
|
+
# undef FAR
|
221
|
+
# endif
|
222
|
+
# include <windows.h>
|
223
|
+
/* No need for _export, use ZLIB.DEF instead. */
|
224
|
+
/* For complete Windows compatibility, use WINAPI, not __stdcall. */
|
225
|
+
# define ZEXPORT WINAPI
|
226
|
+
# ifdef WIN32
|
227
|
+
# define ZEXPORTVA WINAPIV
|
228
|
+
# else
|
229
|
+
# define ZEXPORTVA FAR CDECL
|
230
|
+
# endif
|
231
|
+
# endif
|
232
|
+
#endif
|
233
|
+
|
234
|
+
#if defined (__BEOS__)
|
235
|
+
# ifdef ZLIB_DLL
|
236
|
+
# ifdef ZLIB_INTERNAL
|
237
|
+
# define ZEXPORT __declspec(dllexport)
|
238
|
+
# define ZEXPORTVA __declspec(dllexport)
|
239
|
+
# else
|
240
|
+
# define ZEXPORT __declspec(dllimport)
|
241
|
+
# define ZEXPORTVA __declspec(dllimport)
|
242
|
+
# endif
|
243
|
+
# endif
|
244
|
+
#endif
|
245
|
+
|
246
|
+
#ifndef ZEXTERN
|
247
|
+
# define ZEXTERN extern
|
248
|
+
#endif
|
249
|
+
#ifndef ZEXPORT
|
250
|
+
# define ZEXPORT
|
251
|
+
#endif
|
252
|
+
#ifndef ZEXPORTVA
|
253
|
+
# define ZEXPORTVA
|
254
|
+
#endif
|
255
|
+
|
256
|
+
#ifndef FAR
|
257
|
+
# define FAR
|
258
|
+
#endif
|
259
|
+
|
260
|
+
#if !defined(__MACTYPES__)
|
261
|
+
typedef unsigned char Byte; /* 8 bits */
|
262
|
+
#endif
|
263
|
+
typedef unsigned int uInt; /* 16 bits or more */
|
264
|
+
typedef unsigned long uLong; /* 32 bits or more */
|
265
|
+
|
266
|
+
#ifdef SMALL_MEDIUM
|
267
|
+
/* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
|
268
|
+
# define Bytef Byte FAR
|
269
|
+
#else
|
270
|
+
typedef Byte FAR Bytef;
|
271
|
+
#endif
|
272
|
+
typedef char FAR charf;
|
273
|
+
typedef int FAR intf;
|
274
|
+
typedef uInt FAR uIntf;
|
275
|
+
typedef uLong FAR uLongf;
|
276
|
+
|
277
|
+
#ifdef STDC
|
278
|
+
typedef void const *voidpc;
|
279
|
+
typedef void FAR *voidpf;
|
280
|
+
typedef void *voidp;
|
281
|
+
#else
|
282
|
+
typedef Byte const *voidpc;
|
283
|
+
typedef Byte FAR *voidpf;
|
284
|
+
typedef Byte *voidp;
|
285
|
+
#endif
|
286
|
+
|
287
|
+
#if 1 /* HAVE_UNISTD_H -- this line is updated by ./configure */
|
288
|
+
# include <sys/types.h> /* for off_t */
|
289
|
+
# include <unistd.h> /* for SEEK_* and off_t */
|
290
|
+
# ifdef VMS
|
291
|
+
# include <unixio.h> /* for off_t */
|
292
|
+
# endif
|
293
|
+
# define z_off_t off_t
|
294
|
+
#endif
|
295
|
+
#ifndef SEEK_SET
|
296
|
+
# define SEEK_SET 0 /* Seek from beginning of file. */
|
297
|
+
# define SEEK_CUR 1 /* Seek from current position. */
|
298
|
+
# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
|
299
|
+
#endif
|
300
|
+
#ifndef z_off_t
|
301
|
+
# define z_off_t long
|
302
|
+
#endif
|
303
|
+
|
304
|
+
#if defined(__OS400__)
|
305
|
+
# define NO_vsnprintf
|
306
|
+
#endif
|
307
|
+
|
308
|
+
#if defined(__MVS__)
|
309
|
+
# define NO_vsnprintf
|
310
|
+
# ifdef FAR
|
311
|
+
# undef FAR
|
312
|
+
# endif
|
313
|
+
#endif
|
314
|
+
|
315
|
+
/* MVS linker does not support external names larger than 8 bytes */
|
316
|
+
#if defined(__MVS__)
|
317
|
+
# pragma map(deflateInit_,"DEIN")
|
318
|
+
# pragma map(deflateInit2_,"DEIN2")
|
319
|
+
# pragma map(deflateEnd,"DEEND")
|
320
|
+
# pragma map(deflateBound,"DEBND")
|
321
|
+
# pragma map(inflateInit_,"ININ")
|
322
|
+
# pragma map(inflateInit2_,"ININ2")
|
323
|
+
# pragma map(inflateEnd,"INEND")
|
324
|
+
# pragma map(inflateSync,"INSY")
|
325
|
+
# pragma map(inflateSetDictionary,"INSEDI")
|
326
|
+
# pragma map(compressBound,"CMBND")
|
327
|
+
# pragma map(inflate_table,"INTABL")
|
328
|
+
# pragma map(inflate_fast,"INFA")
|
329
|
+
# pragma map(inflate_copyright,"INCOPY")
|
330
|
+
#endif
|
331
|
+
|
332
|
+
#endif /* ZCONF_H */
|
@@ -0,0 +1,332 @@
|
|
1
|
+
/* zconf.h -- configuration of the zlib compression library
|
2
|
+
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
3
|
+
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* @(#) $Id$ */
|
7
|
+
|
8
|
+
#ifndef ZCONF_H
|
9
|
+
#define ZCONF_H
|
10
|
+
|
11
|
+
/*
|
12
|
+
* If you *really* need a unique prefix for all types and library functions,
|
13
|
+
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
14
|
+
*/
|
15
|
+
#ifdef Z_PREFIX
|
16
|
+
# define deflateInit_ z_deflateInit_
|
17
|
+
# define deflate z_deflate
|
18
|
+
# define deflateEnd z_deflateEnd
|
19
|
+
# define inflateInit_ z_inflateInit_
|
20
|
+
# define inflate z_inflate
|
21
|
+
# define inflateEnd z_inflateEnd
|
22
|
+
# define deflateInit2_ z_deflateInit2_
|
23
|
+
# define deflateSetDictionary z_deflateSetDictionary
|
24
|
+
# define deflateCopy z_deflateCopy
|
25
|
+
# define deflateReset z_deflateReset
|
26
|
+
# define deflateParams z_deflateParams
|
27
|
+
# define deflateBound z_deflateBound
|
28
|
+
# define deflatePrime z_deflatePrime
|
29
|
+
# define inflateInit2_ z_inflateInit2_
|
30
|
+
# define inflateSetDictionary z_inflateSetDictionary
|
31
|
+
# define inflateSync z_inflateSync
|
32
|
+
# define inflateSyncPoint z_inflateSyncPoint
|
33
|
+
# define inflateCopy z_inflateCopy
|
34
|
+
# define inflateReset z_inflateReset
|
35
|
+
# define inflateBack z_inflateBack
|
36
|
+
# define inflateBackEnd z_inflateBackEnd
|
37
|
+
# define compress z_compress
|
38
|
+
# define compress2 z_compress2
|
39
|
+
# define compressBound z_compressBound
|
40
|
+
# define uncompress z_uncompress
|
41
|
+
# define adler32 z_adler32
|
42
|
+
# define crc32 z_crc32
|
43
|
+
# define get_crc_table z_get_crc_table
|
44
|
+
# define zError z_zError
|
45
|
+
|
46
|
+
# define alloc_func z_alloc_func
|
47
|
+
# define free_func z_free_func
|
48
|
+
# define in_func z_in_func
|
49
|
+
# define out_func z_out_func
|
50
|
+
# define Byte z_Byte
|
51
|
+
# define uInt z_uInt
|
52
|
+
# define uLong z_uLong
|
53
|
+
# define Bytef z_Bytef
|
54
|
+
# define charf z_charf
|
55
|
+
# define intf z_intf
|
56
|
+
# define uIntf z_uIntf
|
57
|
+
# define uLongf z_uLongf
|
58
|
+
# define voidpf z_voidpf
|
59
|
+
# define voidp z_voidp
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#if defined(__MSDOS__) && !defined(MSDOS)
|
63
|
+
# define MSDOS
|
64
|
+
#endif
|
65
|
+
#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
|
66
|
+
# define OS2
|
67
|
+
#endif
|
68
|
+
#if defined(_WINDOWS) && !defined(WINDOWS)
|
69
|
+
# define WINDOWS
|
70
|
+
#endif
|
71
|
+
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
|
72
|
+
# ifndef WIN32
|
73
|
+
# define WIN32
|
74
|
+
# endif
|
75
|
+
#endif
|
76
|
+
#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
|
77
|
+
# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
|
78
|
+
# ifndef SYS16BIT
|
79
|
+
# define SYS16BIT
|
80
|
+
# endif
|
81
|
+
# endif
|
82
|
+
#endif
|
83
|
+
|
84
|
+
/*
|
85
|
+
* Compile with -DMAXSEG_64K if the alloc function cannot allocate more
|
86
|
+
* than 64k bytes at a time (needed on systems with 16-bit int).
|
87
|
+
*/
|
88
|
+
#ifdef SYS16BIT
|
89
|
+
# define MAXSEG_64K
|
90
|
+
#endif
|
91
|
+
#ifdef MSDOS
|
92
|
+
# define UNALIGNED_OK
|
93
|
+
#endif
|
94
|
+
|
95
|
+
#ifdef __STDC_VERSION__
|
96
|
+
# ifndef STDC
|
97
|
+
# define STDC
|
98
|
+
# endif
|
99
|
+
# if __STDC_VERSION__ >= 199901L
|
100
|
+
# ifndef STDC99
|
101
|
+
# define STDC99
|
102
|
+
# endif
|
103
|
+
# endif
|
104
|
+
#endif
|
105
|
+
#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
|
106
|
+
# define STDC
|
107
|
+
#endif
|
108
|
+
#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
|
109
|
+
# define STDC
|
110
|
+
#endif
|
111
|
+
#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
|
112
|
+
# define STDC
|
113
|
+
#endif
|
114
|
+
#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
|
115
|
+
# define STDC
|
116
|
+
#endif
|
117
|
+
|
118
|
+
#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
|
119
|
+
# define STDC
|
120
|
+
#endif
|
121
|
+
|
122
|
+
#ifndef STDC
|
123
|
+
# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
|
124
|
+
# define const /* note: need a more gentle solution here */
|
125
|
+
# endif
|
126
|
+
#endif
|
127
|
+
|
128
|
+
/* Some Mac compilers merge all .h files incorrectly: */
|
129
|
+
#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
|
130
|
+
# define NO_DUMMY_DECL
|
131
|
+
#endif
|
132
|
+
|
133
|
+
/* Maximum value for memLevel in deflateInit2 */
|
134
|
+
#ifndef MAX_MEM_LEVEL
|
135
|
+
# ifdef MAXSEG_64K
|
136
|
+
# define MAX_MEM_LEVEL 8
|
137
|
+
# else
|
138
|
+
# define MAX_MEM_LEVEL 9
|
139
|
+
# endif
|
140
|
+
#endif
|
141
|
+
|
142
|
+
/* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
143
|
+
* WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
|
144
|
+
* created by gzip. (Files created by minigzip can still be extracted by
|
145
|
+
* gzip.)
|
146
|
+
*/
|
147
|
+
#ifndef MAX_WBITS
|
148
|
+
# define MAX_WBITS 15 /* 32K LZ77 window */
|
149
|
+
#endif
|
150
|
+
|
151
|
+
/* The memory requirements for deflate are (in bytes):
|
152
|
+
(1 << (windowBits+2)) + (1 << (memLevel+9))
|
153
|
+
that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
|
154
|
+
plus a few kilobytes for small objects. For example, if you want to reduce
|
155
|
+
the default memory requirements from 256K to 128K, compile with
|
156
|
+
make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
|
157
|
+
Of course this will generally degrade compression (there's no free lunch).
|
158
|
+
|
159
|
+
The memory requirements for inflate are (in bytes) 1 << windowBits
|
160
|
+
that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
161
|
+
for small objects.
|
162
|
+
*/
|
163
|
+
|
164
|
+
/* Type declarations */
|
165
|
+
|
166
|
+
#ifndef OF /* function prototypes */
|
167
|
+
# ifdef STDC
|
168
|
+
# define OF(args) args
|
169
|
+
# else
|
170
|
+
# define OF(args) ()
|
171
|
+
# endif
|
172
|
+
#endif
|
173
|
+
|
174
|
+
/* The following definitions for FAR are needed only for MSDOS mixed
|
175
|
+
* model programming (small or medium model with some far allocations).
|
176
|
+
* This was tested only with MSC; for other MSDOS compilers you may have
|
177
|
+
* to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
|
178
|
+
* just define FAR to be empty.
|
179
|
+
*/
|
180
|
+
#ifdef SYS16BIT
|
181
|
+
# if defined(M_I86SM) || defined(M_I86MM)
|
182
|
+
/* MSC small or medium model */
|
183
|
+
# define SMALL_MEDIUM
|
184
|
+
# ifdef _MSC_VER
|
185
|
+
# define FAR _far
|
186
|
+
# else
|
187
|
+
# define FAR far
|
188
|
+
# endif
|
189
|
+
# endif
|
190
|
+
# if (defined(__SMALL__) || defined(__MEDIUM__))
|
191
|
+
/* Turbo C small or medium model */
|
192
|
+
# define SMALL_MEDIUM
|
193
|
+
# ifdef __BORLANDC__
|
194
|
+
# define FAR _far
|
195
|
+
# else
|
196
|
+
# define FAR far
|
197
|
+
# endif
|
198
|
+
# endif
|
199
|
+
#endif
|
200
|
+
|
201
|
+
#if defined(WINDOWS) || defined(WIN32)
|
202
|
+
/* If building or using zlib as a DLL, define ZLIB_DLL.
|
203
|
+
* This is not mandatory, but it offers a little performance increase.
|
204
|
+
*/
|
205
|
+
# ifdef ZLIB_DLL
|
206
|
+
# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
|
207
|
+
# ifdef ZLIB_INTERNAL
|
208
|
+
# define ZEXTERN extern __declspec(dllexport)
|
209
|
+
# else
|
210
|
+
# define ZEXTERN extern __declspec(dllimport)
|
211
|
+
# endif
|
212
|
+
# endif
|
213
|
+
# endif /* ZLIB_DLL */
|
214
|
+
/* If building or using zlib with the WINAPI/WINAPIV calling convention,
|
215
|
+
* define ZLIB_WINAPI.
|
216
|
+
* Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
|
217
|
+
*/
|
218
|
+
# ifdef ZLIB_WINAPI
|
219
|
+
# ifdef FAR
|
220
|
+
# undef FAR
|
221
|
+
# endif
|
222
|
+
# include <windows.h>
|
223
|
+
/* No need for _export, use ZLIB.DEF instead. */
|
224
|
+
/* For complete Windows compatibility, use WINAPI, not __stdcall. */
|
225
|
+
# define ZEXPORT WINAPI
|
226
|
+
# ifdef WIN32
|
227
|
+
# define ZEXPORTVA WINAPIV
|
228
|
+
# else
|
229
|
+
# define ZEXPORTVA FAR CDECL
|
230
|
+
# endif
|
231
|
+
# endif
|
232
|
+
#endif
|
233
|
+
|
234
|
+
#if defined (__BEOS__)
|
235
|
+
# ifdef ZLIB_DLL
|
236
|
+
# ifdef ZLIB_INTERNAL
|
237
|
+
# define ZEXPORT __declspec(dllexport)
|
238
|
+
# define ZEXPORTVA __declspec(dllexport)
|
239
|
+
# else
|
240
|
+
# define ZEXPORT __declspec(dllimport)
|
241
|
+
# define ZEXPORTVA __declspec(dllimport)
|
242
|
+
# endif
|
243
|
+
# endif
|
244
|
+
#endif
|
245
|
+
|
246
|
+
#ifndef ZEXTERN
|
247
|
+
# define ZEXTERN extern
|
248
|
+
#endif
|
249
|
+
#ifndef ZEXPORT
|
250
|
+
# define ZEXPORT
|
251
|
+
#endif
|
252
|
+
#ifndef ZEXPORTVA
|
253
|
+
# define ZEXPORTVA
|
254
|
+
#endif
|
255
|
+
|
256
|
+
#ifndef FAR
|
257
|
+
# define FAR
|
258
|
+
#endif
|
259
|
+
|
260
|
+
#if !defined(__MACTYPES__)
|
261
|
+
typedef unsigned char Byte; /* 8 bits */
|
262
|
+
#endif
|
263
|
+
typedef unsigned int uInt; /* 16 bits or more */
|
264
|
+
typedef unsigned long uLong; /* 32 bits or more */
|
265
|
+
|
266
|
+
#ifdef SMALL_MEDIUM
|
267
|
+
/* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
|
268
|
+
# define Bytef Byte FAR
|
269
|
+
#else
|
270
|
+
typedef Byte FAR Bytef;
|
271
|
+
#endif
|
272
|
+
typedef char FAR charf;
|
273
|
+
typedef int FAR intf;
|
274
|
+
typedef uInt FAR uIntf;
|
275
|
+
typedef uLong FAR uLongf;
|
276
|
+
|
277
|
+
#ifdef STDC
|
278
|
+
typedef void const *voidpc;
|
279
|
+
typedef void FAR *voidpf;
|
280
|
+
typedef void *voidp;
|
281
|
+
#else
|
282
|
+
typedef Byte const *voidpc;
|
283
|
+
typedef Byte FAR *voidpf;
|
284
|
+
typedef Byte *voidp;
|
285
|
+
#endif
|
286
|
+
|
287
|
+
#if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */
|
288
|
+
# include <sys/types.h> /* for off_t */
|
289
|
+
# include <unistd.h> /* for SEEK_* and off_t */
|
290
|
+
# ifdef VMS
|
291
|
+
# include <unixio.h> /* for off_t */
|
292
|
+
# endif
|
293
|
+
# define z_off_t off_t
|
294
|
+
#endif
|
295
|
+
#ifndef SEEK_SET
|
296
|
+
# define SEEK_SET 0 /* Seek from beginning of file. */
|
297
|
+
# define SEEK_CUR 1 /* Seek from current position. */
|
298
|
+
# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
|
299
|
+
#endif
|
300
|
+
#ifndef z_off_t
|
301
|
+
# define z_off_t long
|
302
|
+
#endif
|
303
|
+
|
304
|
+
#if defined(__OS400__)
|
305
|
+
# define NO_vsnprintf
|
306
|
+
#endif
|
307
|
+
|
308
|
+
#if defined(__MVS__)
|
309
|
+
# define NO_vsnprintf
|
310
|
+
# ifdef FAR
|
311
|
+
# undef FAR
|
312
|
+
# endif
|
313
|
+
#endif
|
314
|
+
|
315
|
+
/* MVS linker does not support external names larger than 8 bytes */
|
316
|
+
#if defined(__MVS__)
|
317
|
+
# pragma map(deflateInit_,"DEIN")
|
318
|
+
# pragma map(deflateInit2_,"DEIN2")
|
319
|
+
# pragma map(deflateEnd,"DEEND")
|
320
|
+
# pragma map(deflateBound,"DEBND")
|
321
|
+
# pragma map(inflateInit_,"ININ")
|
322
|
+
# pragma map(inflateInit2_,"ININ2")
|
323
|
+
# pragma map(inflateEnd,"INEND")
|
324
|
+
# pragma map(inflateSync,"INSY")
|
325
|
+
# pragma map(inflateSetDictionary,"INSEDI")
|
326
|
+
# pragma map(compressBound,"CMBND")
|
327
|
+
# pragma map(inflate_table,"INTABL")
|
328
|
+
# pragma map(inflate_fast,"INFA")
|
329
|
+
# pragma map(inflate_copyright,"INCOPY")
|
330
|
+
#endif
|
331
|
+
|
332
|
+
#endif /* ZCONF_H */
|