[FFmpeg-cvslog] r10252 - trunk/configure

mru subversion
Mon Aug 27 16:19:04 CEST 2007


Author: mru
Date: Mon Aug 27 16:19:04 2007
New Revision: 10252

Log:
do not use "strings" in endian check


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Mon Aug 27 16:19:04 2007
@@ -1508,7 +1508,7 @@ EOF
 check_cc <<EOF || die "endian test failed"
 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
 EOF
-strings -a $TMPO | grep -q BIGE && enable bigendian
+grep -q BIGE $TMPO && enable bigendian
 
 # ---
 # check availability of some header files




More information about the ffmpeg-cvslog mailing list