projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ac47d6
)
simplify check_lib
author
Måns Rullgård
<mans@mansr.com>
Mon, 19 Feb 2007 21:08:16 +0000
(21:08 +0000)
committer
Måns Rullgård
<mans@mansr.com>
Mon, 19 Feb 2007 21:08:16 +0000
(21:08 +0000)
Originally committed as revision 8030 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index 308366d1520f46a65781551b87b6215a9d3df08b..d834a322891cead4efd3e7cdc0261b551f580969 100755
(executable)
--- a/
configure
+++ b/
configure
@@
-443,11
+443,7
@@
check_lib(){
header="$1"
func="$2"
shift 2
- temp_extralibs "$@"
- check_header $header && check_func $func && add_extralibs "$@"
- err=$?
- restore_flags
- return $err
+ check_header $header && check_func $func "$@" && add_extralibs "$@"
}
check_exec(){