Commit 45c10110 authored by Ramiro Polla's avatar Ramiro Polla

Remove localtime_r implementation for systems that don't have it.

It is no longer used.

Originally committed as revision 9425 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d6d0182e
...@@ -668,7 +668,6 @@ HAVE_LIST=" ...@@ -668,7 +668,6 @@ HAVE_LIST="
freetype2 freetype2
imlib2 imlib2
inet_aton inet_aton
localtime_r
lrintf lrintf
machine_ioctl_bt848_h machine_ioctl_bt848_h
machine_ioctl_meteor_h machine_ioctl_meteor_h
...@@ -1531,7 +1530,6 @@ check_header byteswap.h ...@@ -1531,7 +1530,6 @@ check_header byteswap.h
check_header arpa/inet.h check_header arpa/inet.h
check_func inet_aton check_func inet_aton
check_func localtime_r
enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no" enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no"
# ffserver uses poll(), # ffserver uses poll(),
......
...@@ -58,19 +58,6 @@ int64_t av_gettime(void) ...@@ -58,19 +58,6 @@ int64_t av_gettime(void)
#endif #endif
} }
#if !defined(HAVE_LOCALTIME_R)
struct tm *localtime_r(const time_t *t, struct tm *tp)
{
struct tm *l;
l = localtime(t);
if (!l)
return 0;
*tp = *l;
return tp;
}
#endif /* !defined(HAVE_LOCALTIME_R) */
#ifdef CONFIG_NETWORK #ifdef CONFIG_NETWORK
#include "network.h" #include "network.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment