diff options
author | Måns Rullgård <mans@mansr.com> | 2007-08-26 09:08:21 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-08-26 09:08:21 +0000 |
commit | 0828e476426682b03c331085d5628b9b1c97b14c (patch) | |
tree | 0fdf03ac049fe907a12312b589875259fbdc72d8 | |
parent | c90762766a501b39c353f3b0bce9279e447a0d96 (diff) | |
download | ffmpeg-0828e476426682b03c331085d5628b9b1c97b14c.tar.gz |
fix endian detection on MacOS
Originally committed as revision 10232 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1508,7 +1508,7 @@ EOF check_cc <<EOF || die "endian test failed" unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; EOF -strings $TMPO | grep -q BIGE && enable bigendian +strings - $TMPO | grep -q BIGE && enable bigendian # --- # check availability of some header files |