annotate src/zlib-1.2.8/contrib/masmx86/readme.txt @ 78:7ea7031c0e5c pa_catalina

Apply patch from Tim Bunnell on PortAudio mailing list (2016-12-28, Mac 10.11 deprecation warning)
author Chris Cannam
date Wed, 30 Oct 2019 11:28:45 +0000
parents 5ea0608b923f
children
rev   line source
Chris@43 1
Chris@43 2 Summary
Chris@43 3 -------
Chris@43 4 This directory contains ASM implementations of the functions
Chris@43 5 longest_match() and inflate_fast().
Chris@43 6
Chris@43 7
Chris@43 8 Use instructions
Chris@43 9 ----------------
Chris@43 10 Assemble using MASM, and copy the object files into the zlib source
Chris@43 11 directory, then run the appropriate makefile, as suggested below. You can
Chris@43 12 donwload MASM from here:
Chris@43 13
Chris@43 14 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64
Chris@43 15
Chris@43 16 You can also get objects files here:
Chris@43 17
Chris@43 18 http://www.winimage.com/zLibDll/zlib124_masm_obj.zip
Chris@43 19
Chris@43 20 Build instructions
Chris@43 21 ------------------
Chris@43 22 * With Microsoft C and MASM:
Chris@43 23 nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj"
Chris@43 24
Chris@43 25 * With Borland C and TASM:
Chris@43 26 make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj"
Chris@43 27