mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
210472586c
commit
78d8fba84e
@ -8,6 +8,12 @@
|
|||||||
|
|
||||||
#if HAVE_PTHREAD_MUTEX_INIT
|
#if HAVE_PTHREAD_MUTEX_INIT
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
|
/* New mingw pthread package seems to define localtime_r as a macro */
|
||||||
|
#ifdef localtime_r
|
||||||
|
#undef localtime_r
|
||||||
|
#endif
|
||||||
|
|
||||||
struct tm *
|
struct tm *
|
||||||
localtime_r(const time_t *const timep, struct tm *p_tm)
|
localtime_r(const time_t *const timep, struct tm *p_tm)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user