[Ffmpeg-cvslog] r5722 - trunk/configure

mru subversion
Wed Jul 12 02:33:22 CEST 2006


Author: mru
Date: Wed Jul 12 02:33:22 2006
New Revision: 5722

Modified:
   trunk/configure

Log:
split compile and link in check_ld
based on patch by Graham Booker <ffmpeglist at cod3r com>


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Wed Jul 12 02:33:22 2006
@@ -231,10 +231,9 @@
 
 check_ld(){
     log check_ld "$@"
-    cat >$TMPC
-    log_file $TMPC
-    log $cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs
-    $cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >>$logfile 2>&1
+    check_cc || return
+    log $cc $LDFLAGS "$@" -o $TMPE $TMPO $extralibs
+    $cc $LDFLAGS "$@" -o $TMPE $TMPO $extralibs >>$logfile 2>&1
 }
 
 check_cflags(){




More information about the ffmpeg-cvslog mailing list