summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 10:08:21 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 10:08:21 +0000
commitb4be37acaf5d725d0c81508907fef9733acab444 (patch)
treed287941749899d0223832f471175cc86635635bf /configure
parent17d2fa3aeaafe539578f41e0178631f808cd93c4 (diff)
downloadmpv-b4be37acaf5d725d0c81508907fef9733acab444.tar.bz2
mpv-b4be37acaf5d725d0c81508907fef9733acab444.tar.xz
Remove check for localtime_r, the function is not used within MPlayer.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23674 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 0 insertions, 16 deletions
diff --git a/configure b/configure
index dee8083914..ba7737859f 100755
--- a/configure
+++ b/configure
@@ -3439,20 +3439,6 @@ else
fi
echores "$_fseeko"
-echocheck "localtime_r()"
-cat > $TMPC << EOF
-#include <time.h>
-int main( void ) { localtime_r(NULL, NULL); }
-EOF
-_localtime_r=no
-cc_check && _localtime_r=yes
-if test "$_localtime_r" = yes ; then
- _def_localtime_r='#define HAVE_LOCALTIME_R 1'
-else
- _def_localtime_r='#undef HAVE_LOCALTIME_R'
-fi
-echores "$_localtime_r"
-
echocheck "vsscanf()"
cat > $TMPC << EOF
#include <stdarg.h>
@@ -7910,8 +7896,6 @@ $_def_fseeko
int fseeko(FILE *, off_t, int);
#endif
-$_def_localtime_r
-
/* Define this if your system has vsscanf */
$_def_vsscanf