[Ffmpeg-cvslog] r8030 - trunk/configure

mru subversion
Mon Feb 19 22:08:16 CET 2007


Author: mru
Date: Mon Feb 19 22:08:16 2007
New Revision: 8030

Modified:
   trunk/configure

Log:
simplify check_lib


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Mon Feb 19 22:08:16 2007
@@ -443,11 +443,7 @@
     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(){




More information about the ffmpeg-cvslog mailing list