diff options
author | Måns Rullgård <mans@mansr.com> | 2007-02-19 21:53:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-19 21:53:09 +0000 |
commit | fcfcde17696a457c684bcdbacd04bcd2272d598c (patch) | |
tree | b35d1a1f2bd457fe70db2bc5547dfebbae195063 /configure | |
parent | a2e25446e7da44bb5b4a18968fcf687796473f4d (diff) | |
download | ffmpeg-fcfcde17696a457c684bcdbacd04bcd2272d598c.tar.gz |
revert last change, it breaks on brain damaged distros
Originally committed as revision 8031 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -443,7 +443,11 @@ check_lib(){ header="$1" func="$2" shift 2 - check_header $header && check_func $func "$@" && add_extralibs "$@" + temp_extralibs "$@" + check_header $header && check_func $func && add_extralibs "$@" + err=$? + restore_flags + return $err } check_exec(){ |