Commit 582b78e3 authored by mru's avatar mru

fix endian detection on MacOS


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10232 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 69912864
...@@ -1508,7 +1508,7 @@ EOF ...@@ -1508,7 +1508,7 @@ EOF
check_cc <<EOF || die "endian test failed" check_cc <<EOF || die "endian test failed"
unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
EOF EOF
strings $TMPO | grep -q BIGE && enable bigendian strings - $TMPO | grep -q BIGE && enable bigendian
# --- # ---
# check availability of some header files # check availability of some header files
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment