compilng works up until gcc starts compiling the unzipping code in the unzip directory. the error i get appears as follows:
In file included from zip/zzip.c:35:
zip/unzip.h:114: parse error before `unzStringFileNameCompare'
zip/unzip.h:116: warning: type defaults to `int' in declaration of `unzStringFileNameCompare'
zip/unzip.h:116: warning: data definition has no type or storage class
so what's on line 114 in unzip.h is:
extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1,
const char* fileName2,
int iCaseSensitivity));
in fact, pretty much all the lines after that produce give the same message. i hate these compiling problems
In file included from zip/zzip.c:35:
zip/unzip.h:114: parse error before `unzStringFileNameCompare'
zip/unzip.h:116: warning: type defaults to `int' in declaration of `unzStringFileNameCompare'
zip/unzip.h:116: warning: data definition has no type or storage class
so what's on line 114 in unzip.h is:
extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1,
const char* fileName2,
int iCaseSensitivity));
in fact, pretty much all the lines after that produce give the same message. i hate these compiling problems
