[Ffmpeg-cvslog] CVS: ffmpeg configure,1.257,1.258

Diego Biurrun CVS diego
Fri Mar 24 02:17:25 CET 2006


Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv2335

Modified Files:
	configure 
Log Message:
Fix order of operands in lrintf test to make the test not fail if you have
a strict compile/linker that accepts arguments just in the canonical order.
patch by Diego Petten?, flameeyes.. at ..gentoo.. dot ..org


Index: configure
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/configure,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -d -r1.257 -r1.258
--- configure	19 Mar 2006 06:31:55 -0000	1.257
+++ configure	24 Mar 2006 01:17:22 -0000	1.258
@@ -1073,7 +1073,7 @@
 EOF
 
 have_lrintf="no"
-if $cc $CFLAGS $LDFLAGS $extralibs -o $TMPE $TMPC 2> /dev/null ; then
+if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC $extralibs 2> /dev/null ; then
   have_lrintf="yes"
   # allanc at chickenandporn.com: cannot execute cross-compiled
   # code on the host.  Only execute if not cross-compiling.





More information about the ffmpeg-cvslog mailing list