Browse Source

avutil/time_internal: do not attempt to override *time_r() macros

Fixes build on somewhat odd setups with mingw
Fixes Ticket4075

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 11 years ago
parent
commit
a604de4fd8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavutil/time_internal.h

+ 2
- 2
libavutil/time_internal.h View File

@@ -22,7 +22,7 @@
#include <time.h>
#include "config.h"

#if !HAVE_GMTIME_R
#if !HAVE_GMTIME_R && !defined(gmtime_r)
static inline struct tm *gmtime_r(const time_t* clock, struct tm *result)
{
struct tm *ptr = gmtime(clock);
@@ -33,7 +33,7 @@ static inline struct tm *gmtime_r(const time_t* clock, struct tm *result)
}
#endif

#if !HAVE_LOCALTIME_R
#if !HAVE_LOCALTIME_R && !defined(localtime_r)
static inline struct tm *localtime_r(const time_t* clock, struct tm *result)
{
struct tm *ptr = localtime(clock);


Loading…
Cancel
Save