Undefine localtime_r as a macro (new mingw pthreads package defines it)

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18828 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-03-04 22:06:23 +00:00
parent 210472586c
commit 78d8fba84e

View File

@ -8,6 +8,12 @@
#if HAVE_PTHREAD_MUTEX_INIT
#include <pthread.h>
/* New mingw pthread package seems to define localtime_r as a macro */
#ifdef localtime_r
#undef localtime_r
#endif
struct tm *
localtime_r(const time_t *const timep, struct tm *p_tm)
{