Re: [FFmpeg-devel] [PATCH] configure: improve the checks for gmtime_r and localtime_r

2015-06-06 Thread James Almer
On 06/06/15 8:42 AM, Michael Niedermayer wrote: > On Sat, Jun 06, 2015 at 02:00:28AM -0300, James Almer wrote: >> They are inlined wrapper functions inside the time.h header on MinGW-w64, so >> neither check_func() or check_func_headers() work with them. >> >> Signed-off-by: James Almer >> --- >>

Re: [FFmpeg-devel] [PATCH] configure: improve the checks for gmtime_r and localtime_r

2015-06-06 Thread Michael Niedermayer
On Sat, Jun 06, 2015 at 02:00:28AM -0300, James Almer wrote: > They are inlined wrapper functions inside the time.h header on MinGW-w64, so > neither check_func() or check_func_headers() work with them. > > Signed-off-by: James Almer > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+),

[FFmpeg-devel] [PATCH] configure: improve the checks for gmtime_r and localtime_r

2015-06-05 Thread James Almer
They are inlined wrapper functions inside the time.h header on MinGW-w64, so neither check_func() or check_func_headers() work with them. Signed-off-by: James Almer --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e29fe91..8168edc