summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-02-19 21:53:09 +0000
committerMåns Rullgård <mans@mansr.com>2007-02-19 21:53:09 +0000
commitfcfcde17696a457c684bcdbacd04bcd2272d598c (patch)
treeb35d1a1f2bd457fe70db2bc5547dfebbae195063 /configure
parenta2e25446e7da44bb5b4a18968fcf687796473f4d (diff)
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-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index d834a32289..308366d152 100755
--- a/configure
+++ b/configure
@@ -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(){