diff options
author | Mark Adler <zlib@madler.net> | 2017-10-12 20:08:53 -0700 |
---|---|---|
committer | Mark Adler <zlib@madler.net> | 2017-10-12 20:27:14 -0700 |
commit | 288f1080317b954b6bdca33708631c011549c008 (patch) | |
tree | 9629f01104722ba8e490f04a0790c56513ba989a /win32 | |
parent | a5773513942b1c57d0eff51fcb2ebac72796ed95 (diff) | |
download | zlib-288f1080317b954b6bdca33708631c011549c008.tar.gz zlib-288f1080317b954b6bdca33708631c011549c008.tar.bz2 zlib-288f1080317b954b6bdca33708631c011549c008.zip |
Remove old assembler code in which bugs have manifested.
In addition, there is not sufficient gain from the inflate
assembler code to warrant its inclusion.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.bor | 1 | ||||
-rw-r--r-- | win32/Makefile.gcc | 5 | ||||
-rw-r--r-- | win32/Makefile.msc | 4 |
3 files changed, 0 insertions, 10 deletions
diff --git a/win32/Makefile.bor b/win32/Makefile.bor index d152bbb..4495353 100644 --- a/win32/Makefile.bor +++ b/win32/Makefile.bor | |||
@@ -3,7 +3,6 @@ | |||
3 | # | 3 | # |
4 | # Usage: | 4 | # Usage: |
5 | # make -f win32/Makefile.bor | 5 | # make -f win32/Makefile.bor |
6 | # make -f win32/Makefile.bor LOCAL_ZLIB=-DASMV OBJA=match.obj OBJPA=+match.obj | ||
7 | 6 | ||
8 | # ------------ Borland C++ ------------ | 7 | # ------------ Borland C++ ------------ |
9 | 8 | ||
diff --git a/win32/Makefile.gcc b/win32/Makefile.gcc index 305be50..081e391 100644 --- a/win32/Makefile.gcc +++ b/win32/Makefile.gcc | |||
@@ -11,10 +11,6 @@ | |||
11 | # | 11 | # |
12 | # make -fwin32/Makefile.gcc; make test testdll -fwin32/Makefile.gcc | 12 | # make -fwin32/Makefile.gcc; make test testdll -fwin32/Makefile.gcc |
13 | # | 13 | # |
14 | # To use the asm code, type: | ||
15 | # cp contrib/asm?86/match.S ./match.S | ||
16 | # make LOC=-DASMV OBJA=match.o -fwin32/Makefile.gcc | ||
17 | # | ||
18 | # To install libz.a, zconf.h and zlib.h in the system directories, type: | 14 | # To install libz.a, zconf.h and zlib.h in the system directories, type: |
19 | # | 15 | # |
20 | # make install -fwin32/Makefile.gcc | 16 | # make install -fwin32/Makefile.gcc |
@@ -38,7 +34,6 @@ IMPLIB = libz.dll.a | |||
38 | # | 34 | # |
39 | SHARED_MODE=0 | 35 | SHARED_MODE=0 |
40 | 36 | ||
41 | #LOC = -DASMV | ||
42 | #LOC = -DZLIB_DEBUG -g | 37 | #LOC = -DZLIB_DEBUG -g |
43 | 38 | ||
44 | PREFIX = | 39 | PREFIX = |
diff --git a/win32/Makefile.msc b/win32/Makefile.msc index 6831882..9c65153 100644 --- a/win32/Makefile.msc +++ b/win32/Makefile.msc | |||
@@ -4,10 +4,6 @@ | |||
4 | # Usage: | 4 | # Usage: |
5 | # nmake -f win32/Makefile.msc (standard build) | 5 | # nmake -f win32/Makefile.msc (standard build) |
6 | # nmake -f win32/Makefile.msc LOC=-DFOO (nonstandard build) | 6 | # nmake -f win32/Makefile.msc LOC=-DFOO (nonstandard build) |
7 | # nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" \ | ||
8 | # OBJA="inffas32.obj match686.obj" (use ASM code, x86) | ||
9 | # nmake -f win32/Makefile.msc AS=ml64 LOC="-DASMV -DASMINF -I." \ | ||
10 | # OBJA="inffasx64.obj gvmat64.obj inffas8664.obj" (use ASM code, x64) | ||
11 | 7 | ||
12 | # The toplevel directory of the source tree. | 8 | # The toplevel directory of the source tree. |
13 | # | 9 | # |