[FFmpeg-cvslog] r23777 - trunk/configure
mru
subversion
Fri Jun 25 17:44:55 CEST 2010
Author: mru
Date: Fri Jun 25 17:44:55 2010
New Revision: 23777
Log:
configure: simplify check_lib function
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Fri Jun 25 17:44:52 2010 (r23776)
+++ trunk/configure Fri Jun 25 17:44:55 2010 (r23777)
@@ -731,11 +731,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_lib2(){
More information about the ffmpeg-cvslog
mailing list