1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-10 09:31:06 +02:00

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
This commit is contained in:
Ramiro Polla 2007-06-25 16:18:28 +00:00
parent d6d0182e20
commit 45c1011020
2 changed files with 0 additions and 15 deletions

2
configure vendored
View File

@ -668,7 +668,6 @@ HAVE_LIST="
freetype2
imlib2
inet_aton
localtime_r
lrintf
machine_ioctl_bt848_h
machine_ioctl_meteor_h
@ -1531,7 +1530,6 @@ check_header byteswap.h
check_header arpa/inet.h
check_func inet_aton
check_func localtime_r
enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no"
# ffserver uses poll(),

View File

@ -58,19 +58,6 @@ int64_t av_gettime(void)
#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
#include "network.h"