[Scummvm-git-logs] scummvm master -> c0c5330986bfa93fa689c0231fa765978039792c
bluegr
bluegr at gmail.com
Fri Aug 6 16:25:34 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c0c5330986 CONFIGURE: Suppress output of a52 test app
Commit: c0c5330986bfa93fa689c0231fa765978039792c
https://github.com/scummvm/scummvm/commit/c0c5330986bfa93fa689c0231fa765978039792c
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-08-06T19:25:31+03:00
Commit Message:
CONFIGURE: Suppress output of a52 test app
a52_init() unconditionally calls a52_imdct_init(), which prints "No
accelerated IMDCT transform found". This interferes with the normals
configure output, which looks like this:
Checking for liba52... No accelerated IMDCT transform found
yes
Changed paths:
configure
diff --git a/configure b/configure
index 0312be044f..f75cf2056e 100755
--- a/configure
+++ b/configure
@@ -4731,7 +4731,7 @@ EOF
# don't execute while cross compiling
cc_check $A52_CFLAGS $A52_LIBS -la52 && _a52=yes
else
- cc_check_no_clean $A52_CFLAGS $A52_LIBS -la52 && $TMPO$HOSTEXEEXT && _a52=yes
+ cc_check_no_clean $A52_CFLAGS $A52_LIBS -la52 && $TMPO$HOSTEXEEXT 2>/dev/null && _a52=yes
cc_check_clean
fi
fi
More information about the Scummvm-git-logs
mailing list