I am running a 64 bit version of SimplyMEPIS and get this error:
Code: Select all
cdaudio.c:124: error: syntax error before 'ogg_int64_t'
make[3]: *** [cdaudio.o] Error 1
the contents of the file it mentions:
Code: Select all
//*
//
// cdAudio Subclass procedure
size_t wz_ogg_read( void *ptr, size_t size, size_t nmemb, void *datasource )
{
return (PHYSFS_sint64)PHYSFS_read( (PHYSFS_file*)datasource, ptr, (PHYSFS_uint32)size, (PHYSFS_uint32)nmemb );
}
int wz_ogg_seek( void *datasource, ogg_int64_t offset, int whence )
{
return -1;
}
int wz_ogg_close( void *datasource )
{
return PHYSFS_close( (PHYSFS_file*)datasource );
}
