2 # Copyright (C) Igor Sysoev
5 echo $ngx_n "checking for system endianess ...$ngx_c"
7 echo "checking for system endianess" >> $NGX_ERR
10 cat << END > $NGX_AUTOTEST.c
17 if (*p == 0x44) return 0;
23 ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \
24 -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs"
26 eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
28 if [ -x $NGX_AUTOTEST ]; then
29 if $NGX_AUTOTEST >/dev/null 2>&1; then
30 echo " little endianess"
31 have=NGX_HAVE_LITTLE_ENDIAN . auto/have
42 echo "$0: error: can not detect system endianess"