summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:35:41 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:35:41 +0000
commit7db81061d745e47e6aae1b947c7a5b40084529de (patch)
tree3fec0137acbf23e23ca343050feda1163bc8b5e4 /configure
parentb2c4df0543c3de1725763511eca658a055209f36 (diff)
downloadmpv-7db81061d745e47e6aae1b947c7a5b40084529de.tar.bz2
mpv-7db81061d745e47e6aae1b947c7a5b40084529de.tar.xz
Split fseeko.c into fseeko.c and ftello.c, move #ifdefs into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21874 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 8b0ec8f5e8..c3db8a4a22 100755
--- a/configure
+++ b/configure
@@ -3439,8 +3439,10 @@ _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"
@@ -7234,8 +7236,10 @@ _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"
@@ -7479,6 +7483,8 @@ HAVE_XVMC_ACCEL = $_xvmc
HAVE_SYS_MMAN_H = _mman
+NEED_FSEEKO = $_need_fseeko
+NEED_FTELLO = $_need_ftello
NEED_GLOB = $_need_glob
NEED_SCANDIR = $_need_scandir
NEED_SETENV = $_need_setenv