Mercurial > mplayer.hg
changeset 10820:4c4bb509e8a2
disable faad with gcc 3.2
author | alex |
---|---|
date | Fri, 05 Sep 2003 23:50:56 +0000 |
parents | 47a90985950d |
children | e9e5dca4af9e |
files | configure |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Fri Sep 05 23:49:18 2003 +0000 +++ b/configure Fri Sep 05 23:50:56 2003 +0000 @@ -4322,7 +4322,10 @@ return 0; } EOF - if cc_check $_inc_faad $_ld_faad -lm && "$TMPO" >> "$TMPLOG" ; then + if test "$_cc_major" -eq "3" && test "$_cc_minor" -eq "2" ; then + _faad=no + echores "no (buggy gcc fails compiling)" + elif cc_check $_inc_faad $_ld_faad -lm && "$TMPO" >> "$TMPLOG" ; then _faad_version=`"$TMPO"` _faad_tempversion=`"$TMPO" | sed -e 's/^\([0-9]\{1,\}\)\.\([0-9]\{1,\}\).*/\1\2/'` _def_faad_version="#define FAADVERSION $_faad_tempversion"