# HG changeset patch # User alex # Date 1062805856 0 # Node ID 4c4bb509e8a272595cfa33f8abb38eaae98f280d # Parent 47a90985950d5e63befc65241bfe2336c6f7e097 disable faad with gcc 3.2 diff -r 47a90985950d -r 4c4bb509e8a2 configure --- 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"