1
mirror of https://github.com/mpv-player/mpv synced 2024-07-19 20:54:13 +02:00

osdep: remove gettimeofday() emulation

Guaranteed by POSIX, and mingw provides it as well.
This commit is contained in:
wm4 2013-01-13 14:29:48 +01:00
parent a96788fe57
commit 41dbf07fc5
2 changed files with 0 additions and 44 deletions

15
configure vendored
View File

@ -1656,19 +1656,6 @@ fi
echores "$_select"
echocheck "gettimeofday()"
_gettimeofday=no
statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
if test "$_gettimeofday" = yes ; then
def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
need_gettimeofday=no
else
def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
need_gettimeofday=yes
fi
echores "$_gettimeofday"
echocheck "glob()"
_glob=no
statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
@ -3121,7 +3108,6 @@ ARCH = $arch
$(mak_enable "$arch_all" "$arch" ARCH)
$(mak_enable "$subarch_all" "$subarch" ARCH)
NEED_GETTIMEOFDAY = $need_gettimeofday
NEED_GLOB = $need_glob
NEED_SHMEM = $need_shmem
NEED_STRSEP = $need_strsep
@ -3254,7 +3240,6 @@ $def_winsock2_h
/* system functions */
$def_gethostbyname2
$def_gettimeofday
$def_glob
$def_nanosleep
$def_posix_select

View File

@ -1,29 +0,0 @@
/*
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* MPlayer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include <sys/time.h>
#include <sys/timeb.h>
int gettimeofday(struct timeval* t, struct timezone* timezone)
{ struct timeb timebuffer;
ftime( &timebuffer );
t->tv_sec=timebuffer.time;
t->tv_usec=1000*timebuffer.millitm;
return 0;
}