I deal with the program by modify svutil.h, like below:
#ifdef WIN32
#include <windows.h>
#define snprintf _snprintf
#if (_MSC_VER <= 1400)
#define vsnprintf _vsnprintf
#endif
#pragma warning(disable:4786)
#else
#include <stdio.h> //this is the code i add, at line 12
#include <pthread.h>
#include <semaphore.h>
#endif
Original issue reported on code.google.com by fuhu...@gmail.com on 12 May 2010 at 12:26
Original issue reported on code.google.com by
fuhu...@gmail.com
on 12 May 2010 at 12:26