summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 09:41:47 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 09:41:47 +0000
commitb6b143c5dcba4d4196e524ab45d467da136f33f5 (patch)
tree3b4a3419edf5e19db401f1a95e0fd638873fa6a1 /configure
parente9b8b6cf1abcf8cf2ce5124965ea9deeb1b1ee08 (diff)
downloadmpv-b6b143c5dcba4d4196e524ab45d467da136f33f5.tar.bz2
mpv-b6b143c5dcba4d4196e524ab45d467da136f33f5.tar.xz
Remove unused ftello() check and fallback implementation.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23798 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure28
1 files changed, 0 insertions, 28 deletions
diff --git a/configure b/configure
index 21498c97d1..ed356f8316 100755
--- a/configure
+++ b/configure
@@ -7128,23 +7128,6 @@ else
echores "no"
fi
-echocheck "ftello()"
-# if we don't have ftello use the osdep/ compatibility module
-cat > $TMPC << EOF
-#include <stdio.h>
-#include <sys/types.h>
-int main (void) { ftello(stdin); return 0; }
-EOF
-_ftello=no
-cc_check && _ftello=yes
-if test "$_ftello" = yes ; then
- _def_ftello='#define HAVE_FTELLO 1'
- _need_ftello=no
-else
- _def_ftello='#undef HAVE_FTELLO'
- _need_ftello=yes
-fi
-echores "$_ftello"
# Dynamic linking flags
# (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
@@ -7411,7 +7394,6 @@ HAVE_XVMC_ACCEL = $_xvmc
HAVE_SYS_MMAN_H = $_mman
HAVE_POSIX_SELECT = $_posix_select
-NEED_FTELLO = $_need_ftello
NEED_GETTIMEOFDAY = $_need_gettimeofday
NEED_GLOB = $_need_glob
NEED_SCANDIR = $_need_scandir
@@ -7734,16 +7716,6 @@ $_def_soundcard
/* Define this if your system has the sysinfo header */
$_def_sys_sysinfo
-/* Define this if your system has ftello() */
-
-$_def_ftello
-#ifndef HAVE_FTELLO
-/* Need these for FILE and off_t an config.h is usually before other includes*/
-#include <stdio.h>
-#include <sys/types.h>
-off_t ftello(FILE *);
-#endif
-
/* Define this if your system has the "malloc.h" header file */
$_def_malloc