mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
Thanks to spirit for pointing that QF wasn't compiling with zlib 1.2.6 (archlinux, not yet in debian). I was using gzFile as "gzFile *gzfile", but gzFile is already a pointer. In older versions of zlib (including the 1.2.3 that's in debian), gzFile is declared as a void *, and it seems that gcc is happy with assigning void ** to void *. However, in recent zlib, gzFile is now struct gzFile_s *, which gcc is most definitely unhappy about assigning to struct gzFile **. I just hope that either I had misread the type back when I wrote quakeio, or that nobody is using such an ancient zlib. |
||
---|---|---|
.. | ||
audio | ||
console | ||
gamecode | ||
gib | ||
image | ||
models | ||
net | ||
qw | ||
ruamoko | ||
util | ||
video | ||
Makefile.am |