summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 09:40:32 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 09:40:32 +0000
commite9b8b6cf1abcf8cf2ce5124965ea9deeb1b1ee08 (patch)
treedcaf4c283c828e6be9f1dfa3913831f80901e8a0 /configure
parent411a4b40586a5ea0f9e3d49a74ec5591223d7e8e (diff)
downloadmpv-e9b8b6cf1abcf8cf2ce5124965ea9deeb1b1ee08.tar.bz2
mpv-e9b8b6cf1abcf8cf2ce5124965ea9deeb1b1ee08.tar.xz
Remove unused fseeko() check and fallback implementation.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23797 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure25
1 files changed, 0 insertions, 25 deletions
diff --git a/configure b/configure
index 23051f0663..21498c97d1 100755
--- a/configure
+++ b/configure
@@ -3355,21 +3355,6 @@ else
fi
echores "$_strsep"
-echocheck "fseeko()"
-cat > $TMPC << EOF
-#include <stdio.h>
-int main (void) { int i; i = fseeko(stdin, 0, 0); return 0; }
-EOF
-_fseeko=no
-cc_check && _fseeko=yes
-if test "$_fseeko" = yes ; then
- _def_fseeko='#define HAVE_FSEEKO 1'
- _need_fseeko=no
-else
- _def_fseeko='#undef HAVE_FSEEKO'
- _need_fseeko=yes
-fi
-echores "$_fseeko"
echocheck "vsscanf()"
cat > $TMPC << EOF
@@ -7426,7 +7411,6 @@ HAVE_XVMC_ACCEL = $_xvmc
HAVE_SYS_MMAN_H = $_mman
HAVE_POSIX_SELECT = $_posix_select
-NEED_FSEEKO = $_need_fseeko
NEED_FTELLO = $_need_ftello
NEED_GETTIMEOFDAY = $_need_gettimeofday
NEED_GLOB = $_need_glob
@@ -7799,15 +7783,6 @@ $_def_scandir
/* Define this if your system has strsep */
$_def_strsep
-/* Define this if your system has fseeko */
-$_def_fseeko
-#ifndef HAVE_FSEEKO
-/* Need these for FILE and off_t an config.h is usually before other includes*/
-#include <stdio.h>
-#include <sys/types.h>
-int fseeko(FILE *, off_t, int);
-#endif
-
/* Define this if your system has vsscanf */
$_def_vsscanf