summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-27 18:33:44 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-27 18:33:44 +0000
commit982c1f9872ecb001266f309f21cf1531533e96eb (patch)
tree64cb9cacbef887e1c7875642b06ebe71cc5ebb9f /configure
parentc698472b0794e192a93f7d9e26f20f738b195ec3 (diff)
downloadmpv-982c1f9872ecb001266f309f21cf1531533e96eb.tar.bz2
mpv-982c1f9872ecb001266f309f21cf1531533e96eb.tar.xz
remove CYGWIN_BIG_TYPES, as it breaks st_size member of stat struct
(it is remapped to __st_size64, which is never set when calling stat()), this is needed for an upcoming libmpdvdkit cygwin patch. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6824 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure b/configure
index 0e37c012f2..396110ffe2 100755
--- a/configure
+++ b/configure
@@ -3655,7 +3655,7 @@ else
echores "no"
fi # DivX5 check
fi
-echores "no"
+
fi # XviD divx4 compatiblity check
# mencoder requires (optional) those libs: libmp3lame and divx4linux encore
@@ -3968,7 +3968,9 @@ echores "$_ftello"
if cygwin ; then
_confcygwin='TARGET_CYGWIN = yes'
_def_confwin32='#define WIN32'
- CFLAGS="$CFLAGS -D__CYGWIN__ -D__CYGWIN_USE_BIG_TYPES__"
+ #CFLAGS="$CFLAGS -D__CYGWIN__ -D__CYGWIN_USE_BIG_TYPES__"
+ # stat.st_size with BIG_TYPES is broken (not set) ::atmos
+ CFLAGS="$CFLAGS -D__CYGWIN__"
else
_confcygwin="TARGET_CYGWIN = no"
fi