new attempt at portable endian test

Originally committed as revision 12437 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Måns Rullgård 17 years ago
parent ccae51d5b9
commit d04d9e167e
  1. 2
      configure

2
configure vendored

@ -1565,7 +1565,7 @@ enabled vis && add_cflags "-mcpu=ultrasparc -mtune=ultrasparc"
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
od -t x1 $TMPO | grep -q '42 49 47 45' && enable bigendian od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
# --- # ---
# check availability of some header files # check availability of some header files

Loading…
Cancel
Save