diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:01 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:01 -0700 |
commit | b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d (patch) | |
tree | 2a9609068ca980db627bceb3f5a48638eaad1c13 /old | |
parent | f81ba93d4a7e43fccf4730e5e7404ee765a76e3e (diff) | |
download | zlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.tar.gz zlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.tar.bz2 zlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.zip |
zlib 1.2.0.7v1.2.0.7
Diffstat (limited to 'old')
-rw-r--r-- | old/README | 2 | ||||
-rw-r--r-- | old/amiga/Makefile.pup | 66 | ||||
-rw-r--r-- | old/amiga/Makefile.sas | 64 | ||||
-rw-r--r-- | old/msdos/Makefile.b32 | 104 | ||||
-rw-r--r-- | old/msdos/Makefile.wat | 103 |
5 files changed, 1 insertions, 338 deletions
@@ -1,3 +1,3 @@ | |||
1 | This directory contains files that have not been updated for zlib 1.2.0. | 1 | This directory contains files that have not been updated for zlib 1.2. |
2 | 2 | ||
3 | (Volunteers are encouraged to help clean this up. Thanks.) | 3 | (Volunteers are encouraged to help clean this up. Thanks.) |
diff --git a/old/amiga/Makefile.pup b/old/amiga/Makefile.pup deleted file mode 100644 index 6cfad1d..0000000 --- a/old/amiga/Makefile.pup +++ /dev/null | |||
@@ -1,66 +0,0 @@ | |||
1 | # Amiga powerUP (TM) Makefile | ||
2 | # makefile for libpng and SAS C V6.58/7.00 PPC compiler | ||
3 | # Copyright (C) 1998 by Andreas R. Kleinert | ||
4 | |||
5 | CC = scppc | ||
6 | CFLAGS = NOSTKCHK NOSINT OPTIMIZE OPTGO OPTPEEP OPTINLOCAL OPTINL \ | ||
7 | OPTLOOP OPTRDEP=8 OPTDEP=8 OPTCOMP=8 | ||
8 | LIBNAME = libzip.a | ||
9 | AR = ppc-amigaos-ar | ||
10 | AR_FLAGS = cr | ||
11 | RANLIB = ppc-amigaos-ranlib | ||
12 | LDFLAGS = -r -o | ||
13 | LDLIBS = LIB:scppc.a | ||
14 | LN = ppc-amigaos-ld | ||
15 | RM = delete quiet | ||
16 | |||
17 | OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | ||
18 | zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o | ||
19 | |||
20 | TEST_OBJS = example.o minigzip.o | ||
21 | |||
22 | all: example minigzip | ||
23 | |||
24 | test: all | ||
25 | example | ||
26 | echo hello world | minigzip | minigzip -d | ||
27 | |||
28 | $(LIBNAME): $(OBJS) | ||
29 | $(AR) $(AR_FLAGS) $@ $(OBJS) | ||
30 | $(RANLIB) $@ | ||
31 | |||
32 | example: example.o $(LIBNAME) | ||
33 | $(LN) $(LDFLAGS) example LIB:c_ppc.o example.o $(LIBNAME) $(LDLIBS) LIB:end.o | ||
34 | |||
35 | minigzip: minigzip.o $(LIBNAME) | ||
36 | $(LN) $(LDFLAGS) minigzip LIB:c_ppc.o minigzip.o $(LIBNAME) $(LDLIBS) LIB:end.o | ||
37 | |||
38 | clean: | ||
39 | $(RM) *.o example minigzip $(LIBNAME) foo.gz | ||
40 | |||
41 | zip: | ||
42 | zip -ul9 zlib README ChangeLog Makefile Make????.??? Makefile.?? \ | ||
43 | descrip.mms *.[ch] | ||
44 | |||
45 | tgz: | ||
46 | cd ..; tar cfz zlib/zlib.tgz zlib/README zlib/ChangeLog zlib/Makefile \ | ||
47 | zlib/Make????.??? zlib/Makefile.?? zlib/descrip.mms zlib/*.[ch] | ||
48 | |||
49 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
50 | |||
51 | adler32.o: zutil.h zlib.h zconf.h | ||
52 | compress.o: zlib.h zconf.h | ||
53 | crc32.o: zutil.h zlib.h zconf.h | ||
54 | deflate.o: deflate.h zutil.h zlib.h zconf.h | ||
55 | example.o: zlib.h zconf.h | ||
56 | gzio.o: zutil.h zlib.h zconf.h | ||
57 | infblock.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h | ||
58 | infcodes.o: zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h | ||
59 | inffast.o: zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h | ||
60 | inflate.o: zutil.h zlib.h zconf.h infblock.h | ||
61 | inftrees.o: zutil.h zlib.h zconf.h inftrees.h | ||
62 | infutil.o: zutil.h zlib.h zconf.h inftrees.h infutil.h | ||
63 | minigzip.o: zlib.h zconf.h | ||
64 | trees.o: deflate.h zutil.h zlib.h zconf.h | ||
65 | uncompr.o: zlib.h zconf.h | ||
66 | zutil.o: zutil.h zlib.h zconf.h | ||
diff --git a/old/amiga/Makefile.sas b/old/amiga/Makefile.sas deleted file mode 100644 index 5323e82..0000000 --- a/old/amiga/Makefile.sas +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
1 | # SMakefile for zlib | ||
2 | # Modified from the standard UNIX Makefile Copyright Jean-loup Gailly | ||
3 | # Osma Ahvenlampi <Osma.Ahvenlampi@hut.fi> | ||
4 | # Amiga, SAS/C 6.56 & Smake | ||
5 | |||
6 | CC=sc | ||
7 | CFLAGS=OPT | ||
8 | #CFLAGS=OPT CPU=68030 | ||
9 | #CFLAGS=DEBUG=LINE | ||
10 | LDFLAGS=LIB z.lib | ||
11 | |||
12 | SCOPTIONS=OPTSCHED OPTINLINE OPTALIAS OPTTIME OPTINLOCAL STRMERGE \ | ||
13 | NOICONS PARMS=BOTH NOSTACKCHECK UTILLIB NOVERSION ERRORREXX | ||
14 | |||
15 | OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | ||
16 | zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o | ||
17 | |||
18 | TEST_OBJS = example.o minigzip.o | ||
19 | |||
20 | all: SCOPTIONS example minigzip | ||
21 | |||
22 | test: all | ||
23 | `cd`/example | ||
24 | echo hello world | minigzip | minigzip -d | ||
25 | |||
26 | install: z.lib | ||
27 | copy zlib.h zconf.h INCLUDE: clone | ||
28 | copy z.lib LIB: clone | ||
29 | |||
30 | z.lib: $(OBJS) | ||
31 | oml z.lib r $(OBJS) | ||
32 | |||
33 | example: example.o z.lib | ||
34 | $(CC) $(CFLAGS) LINK TO $@ example.o $(LDFLAGS) | ||
35 | |||
36 | minigzip: minigzip.o z.lib | ||
37 | $(CC) $(CFLAGS) LINK TO $@ minigzip.o $(LDFLAGS) | ||
38 | |||
39 | clean: | ||
40 | -delete force quiet *.o example minigzip z.lib foo.gz *.lnk SCOPTIONS | ||
41 | |||
42 | SCOPTIONS: Smakefile | ||
43 | copy to $@ <from < | ||
44 | $(SCOPTIONS) | ||
45 | < | ||
46 | |||
47 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
48 | |||
49 | adler32.o: zutil.h zlib.h zconf.h | ||
50 | compress.o: zlib.h zconf.h | ||
51 | crc32.o: zutil.h zlib.h zconf.h | ||
52 | deflate.o: deflate.h zutil.h zlib.h zconf.h | ||
53 | example.o: zlib.h zconf.h | ||
54 | gzio.o: zutil.h zlib.h zconf.h | ||
55 | infblock.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h | ||
56 | infcodes.o: zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h | ||
57 | inffast.o: zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h | ||
58 | inflate.o: zutil.h zlib.h zconf.h infblock.h | ||
59 | inftrees.o: zutil.h zlib.h zconf.h inftrees.h | ||
60 | infutil.o: zutil.h zlib.h zconf.h inftrees.h infutil.h | ||
61 | minigzip.o: zlib.h zconf.h | ||
62 | trees.o: deflate.h zutil.h zlib.h zconf.h | ||
63 | uncompr.o: zlib.h zconf.h | ||
64 | zutil.o: zutil.h zlib.h zconf.h | ||
diff --git a/old/msdos/Makefile.b32 b/old/msdos/Makefile.b32 deleted file mode 100644 index 3802ea4..0000000 --- a/old/msdos/Makefile.b32 +++ /dev/null | |||
@@ -1,104 +0,0 @@ | |||
1 | # Makefile for zlib | ||
2 | # Borland C++ | ||
3 | |||
4 | # This version of the zlib makefile was adapted by Chris Young for use | ||
5 | # with Borland C 4.5x with the Dos Power Pack for a 32-bit protected mode | ||
6 | # flat memory model. It was created for use with POV-Ray ray tracer and | ||
7 | # you may choose to edit the CFLAGS to suit your needs but the | ||
8 | # switches -WX and -DMSDOS are required. | ||
9 | # -- Chris Young 76702.1655@compuserve.com | ||
10 | |||
11 | # To use, do "make -fmakefile.b32" | ||
12 | |||
13 | # See zconf.h for details about the memory requirements. | ||
14 | |||
15 | # ------------- Borland C++ ------------- | ||
16 | MODEL=-WX | ||
17 | CFLAGS= $(MODEL) -P-C -K -N- -k- -d -3 -r- -v- -f -DMSDOS | ||
18 | CC=bcc32 | ||
19 | LD=bcc32 | ||
20 | LIB=tlib | ||
21 | LDFLAGS= $(MODEL) | ||
22 | O=.obj | ||
23 | |||
24 | # variables | ||
25 | OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \ | ||
26 | trees$(O) | ||
27 | OBJP1 = adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O)+\ | ||
28 | trees$(O) | ||
29 | OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \ | ||
30 | infutil$(O) inffast$(O) | ||
31 | OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\ | ||
32 | infutil$(O)+inffast$(O) | ||
33 | |||
34 | all: test | ||
35 | |||
36 | adler32.obj: adler32.c zlib.h zconf.h | ||
37 | $(CC) -c $(CFLAGS) $*.c | ||
38 | |||
39 | compress.obj: compress.c zlib.h zconf.h | ||
40 | $(CC) -c $(CFLAGS) $*.c | ||
41 | |||
42 | crc32.obj: crc32.c zlib.h zconf.h | ||
43 | $(CC) -c $(CFLAGS) $*.c | ||
44 | |||
45 | deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h | ||
46 | $(CC) -c $(CFLAGS) $*.c | ||
47 | |||
48 | gzio.obj: gzio.c zutil.h zlib.h zconf.h | ||
49 | $(CC) -c $(CFLAGS) $*.c | ||
50 | |||
51 | infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\ | ||
52 | infcodes.h infutil.h | ||
53 | $(CC) -c $(CFLAGS) $*.c | ||
54 | |||
55 | infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\ | ||
56 | infcodes.h inffast.h | ||
57 | $(CC) -c $(CFLAGS) $*.c | ||
58 | |||
59 | inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h | ||
60 | $(CC) -c $(CFLAGS) $*.c | ||
61 | |||
62 | inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h | ||
63 | $(CC) -c $(CFLAGS) $*.c | ||
64 | |||
65 | infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h | ||
66 | $(CC) -c $(CFLAGS) $*.c | ||
67 | |||
68 | inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h | ||
69 | $(CC) -c $(CFLAGS) $*.c | ||
70 | |||
71 | trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h | ||
72 | $(CC) -c $(CFLAGS) $*.c | ||
73 | |||
74 | uncompr.obj: uncompr.c zlib.h zconf.h | ||
75 | $(CC) -c $(CFLAGS) $*.c | ||
76 | |||
77 | zutil.obj: zutil.c zutil.h zlib.h zconf.h | ||
78 | $(CC) -c $(CFLAGS) $*.c | ||
79 | |||
80 | example.obj: example.c zlib.h zconf.h | ||
81 | $(CC) -c $(CFLAGS) $*.c | ||
82 | |||
83 | minigzip.obj: minigzip.c zlib.h zconf.h | ||
84 | $(CC) -c $(CFLAGS) $*.c | ||
85 | |||
86 | # we must cut the command line to fit in the MS/DOS 128 byte limit: | ||
87 | zlib.lib: $(OBJ1) $(OBJ2) | ||
88 | del zlib.lib | ||
89 | $(LIB) zlib +$(OBJP1) | ||
90 | $(LIB) zlib +$(OBJP2) | ||
91 | |||
92 | example.exe: example.obj zlib.lib | ||
93 | $(LD) $(LDFLAGS) example.obj zlib.lib | ||
94 | |||
95 | minigzip.exe: minigzip.obj zlib.lib | ||
96 | $(LD) $(LDFLAGS) minigzip.obj zlib.lib | ||
97 | |||
98 | test: example.exe minigzip.exe | ||
99 | example | ||
100 | echo hello world | minigzip | minigzip -d | ||
101 | |||
102 | #clean: | ||
103 | # del *.obj | ||
104 | # del *.exe | ||
diff --git a/old/msdos/Makefile.wat b/old/msdos/Makefile.wat deleted file mode 100644 index 065fe4c..0000000 --- a/old/msdos/Makefile.wat +++ /dev/null | |||
@@ -1,103 +0,0 @@ | |||
1 | # Makefile for zlib | ||
2 | # Watcom 10a | ||
3 | |||
4 | # This version of the zlib makefile was adapted by Chris Young for use | ||
5 | # with Watcom 10a 32-bit protected mode flat memory model. It was created | ||
6 | # for use with POV-Ray ray tracer and you may choose to edit the CFLAGS to | ||
7 | # suit your needs but the -DMSDOS is required. | ||
8 | # -- Chris Young 76702.1655@compuserve.com | ||
9 | |||
10 | # To use, do "wmake -f makefile.wat" | ||
11 | |||
12 | # See zconf.h for details about the memory requirements. | ||
13 | |||
14 | # ------------- Watcom 10a ------------- | ||
15 | MODEL=-mf | ||
16 | CFLAGS= $(MODEL) -fpi87 -fp5 -zp4 -5r -w5 -oneatx -DMSDOS | ||
17 | CC=wcc386 | ||
18 | LD=wcl386 | ||
19 | LIB=wlib -b -c | ||
20 | LDFLAGS= | ||
21 | O=.obj | ||
22 | |||
23 | # variables | ||
24 | OBJ1=adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) | ||
25 | OBJ2=trees$(O) zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) | ||
26 | OBJ3=infutil$(O) inffast$(O) | ||
27 | OBJP1=adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O) | ||
28 | OBJP2=trees$(O)+zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O) | ||
29 | OBJP3=infutil$(O)+inffast$(O) | ||
30 | |||
31 | all: test | ||
32 | |||
33 | adler32.obj: adler32.c zlib.h zconf.h | ||
34 | $(CC) $(CFLAGS) $*.c | ||
35 | |||
36 | compress.obj: compress.c zlib.h zconf.h | ||
37 | $(CC) $(CFLAGS) $*.c | ||
38 | |||
39 | crc32.obj: crc32.c zlib.h zconf.h | ||
40 | $(CC) $(CFLAGS) $*.c | ||
41 | |||
42 | deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h | ||
43 | $(CC) $(CFLAGS) $*.c | ||
44 | |||
45 | gzio.obj: gzio.c zutil.h zlib.h zconf.h | ||
46 | $(CC) $(CFLAGS) $*.c | ||
47 | |||
48 | infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h & | ||
49 | infcodes.h infutil.h | ||
50 | $(CC) $(CFLAGS) $*.c | ||
51 | |||
52 | infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h & | ||
53 | infcodes.h inffast.h | ||
54 | $(CC) $(CFLAGS) $*.c | ||
55 | |||
56 | inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h | ||
57 | $(CC) $(CFLAGS) $*.c | ||
58 | |||
59 | inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h | ||
60 | $(CC) $(CFLAGS) $*.c | ||
61 | |||
62 | infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h | ||
63 | $(CC) $(CFLAGS) $*.c | ||
64 | |||
65 | inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h | ||
66 | $(CC) $(CFLAGS) $*.c | ||
67 | |||
68 | trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h | ||
69 | $(CC) $(CFLAGS) $*.c | ||
70 | |||
71 | uncompr.obj: uncompr.c zlib.h zconf.h | ||
72 | $(CC) $(CFLAGS) $*.c | ||
73 | |||
74 | zutil.obj: zutil.c zutil.h zlib.h zconf.h | ||
75 | $(CC) $(CFLAGS) $*.c | ||
76 | |||
77 | example.obj: example.c zlib.h zconf.h | ||
78 | $(CC) $(CFLAGS) $*.c | ||
79 | |||
80 | minigzip.obj: minigzip.c zlib.h zconf.h | ||
81 | $(CC) $(CFLAGS) $*.c | ||
82 | |||
83 | # we must cut the command line to fit in the MS/DOS 128 byte limit: | ||
84 | zlib.lib: $(OBJ1) $(OBJ2) $(OBJ3) | ||
85 | del zlib.lib | ||
86 | $(LIB) zlib.lib +$(OBJP1) | ||
87 | $(LIB) zlib.lib +$(OBJP2) | ||
88 | $(LIB) zlib.lib +$(OBJP3) | ||
89 | |||
90 | example.exe: example.obj zlib.lib | ||
91 | $(LD) $(LDFLAGS) example.obj zlib.lib | ||
92 | |||
93 | minigzip.exe: minigzip.obj zlib.lib | ||
94 | $(LD) $(LDFLAGS) minigzip.obj zlib.lib | ||
95 | |||
96 | test: minigzip.exe example.exe | ||
97 | example | ||
98 | echo hello world | minigzip | minigzip -d >test | ||
99 | type test | ||
100 | |||
101 | #clean: | ||
102 | # del *.obj | ||
103 | # del *.exe | ||