git @ Cat's Eye Technologies OpenZz / 5b75b81
Bumps in preparation for release of ce3. Chris Pressey 2 years ago
2 changed file(s) with 13 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 OpenZz 1.0.4-4ce2
0 OpenZz 1.0.4-4ce3
11 =================
22
3 This is OpenZz 1.0.4-4ce2, a fork of the original
3 This is OpenZz 1.0.4-4ce3, a fork of the original
44 [OpenZz distribution](https://openzz.sourceforge.net/),
55 based on OpenZz version 1.0.4-4. The original README can be found at the
66 end of this Markdown file, encased in a preformatted text block.
8686
8787 Which is fine by me, as long as it can still play [Zzrk](http://catseye.tc/node/Zzrk.html).
8888
89 ### 1.0.4-4ce3
90
91 Includes many changes to the code to address compiler warnings.
92 While a few remain, the bulk of them have been eliminated.
93 (Many were simply due to `gcc` wanting to see an explicit return
94 type, instead of defaulting to `int`, and missing prototypes.)
95
96 Also includes an MS-DOS batchfile to build `ozz.exe` under
97 MS-DOS usind DJGPP.
98
8999 -Chris
90100
91101 ```
5757
5858 OBJECTS=""
5959 for SOURCE in $SOURCES; do
60 gcc $CFLAGS -DVERSION='"1.0.4-4ce2"' $DREADLINE -c $SOURCE.c -o $SOURCE.o || exit 1
60 gcc $CFLAGS -DVERSION='"1.0.4-4ce3"' $DREADLINE -c $SOURCE.c -o $SOURCE.o || exit 1
6161 OBJECTS="$OBJECTS $SOURCE.o"
6262 done
6363