wrt350nv2-builder: don't use internal zlib macro OF() in ioapi.h, it breaks with new zlib releases
SVN-Revision: 33181
This commit is contained in:
		| @@ -9,6 +9,7 @@ include $(TOPDIR)/rules.mk | |||||||
|  |  | ||||||
| PKG_NAME:=wrt350nv2-builder | PKG_NAME:=wrt350nv2-builder | ||||||
| PKG_VERSION:=2.4 | PKG_VERSION:=2.4 | ||||||
|  | PKG_REVISION:=2 | ||||||
|  |  | ||||||
| HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/${PKG_NAME}-$(PKG_VERSION) | HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/${PKG_NAME}-$(PKG_VERSION) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -35,13 +35,13 @@ | |||||||
| extern "C" { | extern "C" { | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode)); | typedef voidpf (ZCALLBACK *open_file_func) (voidpf opaque, const char* filename, int mode); | ||||||
| typedef uLong  (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)); | typedef uLong  (ZCALLBACK *read_file_func) (voidpf opaque, voidpf stream, void* buf, uLong size); | ||||||
| typedef uLong  (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); | typedef uLong  (ZCALLBACK *write_file_func) (voidpf opaque, voidpf stream, const void* buf, uLong size); | ||||||
| typedef long   (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream)); | typedef long   (ZCALLBACK *tell_file_func) (voidpf opaque, voidpf stream); | ||||||
| typedef long   (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin)); | typedef long   (ZCALLBACK *seek_file_func) (voidpf opaque, voidpf stream, uLong offset, int origin); | ||||||
| typedef int    (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream)); | typedef int    (ZCALLBACK *close_file_func) (voidpf opaque, voidpf stream); | ||||||
| typedef int    (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream)); | typedef int    (ZCALLBACK *testerror_file_func) (voidpf opaque, voidpf stream); | ||||||
|  |  | ||||||
| typedef struct zlib_filefunc_def_s | typedef struct zlib_filefunc_def_s | ||||||
| { | { | ||||||
| @@ -57,7 +57,7 @@ typedef struct zlib_filefunc_def_s | |||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| void fill_fopen_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); | void fill_fopen_filefunc (zlib_filefunc_def* pzlib_filefunc_def); | ||||||
|  |  | ||||||
| #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) | #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) | ||||||
| #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) | #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jo-Philipp Wich
					Jo-Philipp Wich