aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorOliver Kiehl2004-01-14 13:23:16 +0000
committerOliver Kiehl2004-01-14 13:23:16 +0000
commitf496e49815d5f585b8183e32df52402991017cf9 (patch)
tree32a60554b257466791b0a7cf06b10c95a015c645 /configure
parentf75c122b941d6240cc57721b6f81f7a351cd476e (diff)
downloadscummvm-rg350-f496e49815d5f585b8183e32df52402991017cf9.tar.gz
scummvm-rg350-f496e49815d5f585b8183e32df52402991017cf9.tar.bz2
scummvm-rg350-f496e49815d5f585b8183e32df52402991017cf9.zip
* /execute/ the binary too. don't only compile it
* actually 0.3.2 is sufficient. no need for 0.4.0 svn-id: r12382
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index bdcefa264d..a5f4e375e7 100755
--- a/configure
+++ b/configure
@@ -567,7 +567,7 @@ else
fi
echo "$_zlib"
-echocheck "libmpeg2 >= 0.4.0"
+echocheck "libmpeg2 >= 0.3.2"
if test "$_mpeg2" = auto ; then
_mpeg2=no
cat > $TMPC << EOF
@@ -578,13 +578,13 @@ int main(void) {
mpeg2_state_t state;
#ifdef MPEG2_RELEASE
- if (MPEG2_RELEASE >= MPEG2_VERSION(0, 4, 0))
+ if (MPEG2_RELEASE >= MPEG2_VERSION(0, 3, 2))
return 0;
#endif
return 1;
}
EOF
- cc_check $LDFLAGS $CXXFLAGS $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && _mpeg2=yes
+ cc_check $LDFLAGS $CXXFLAGS $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && $TMPO && _mpeg2=yes
fi
if test "$_mpeg2" = yes ; then
_def_mpeg2='#define USE_MPEG2'