summaryrefslogtreecommitdiffhomepage
path: root/auto/endianness
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-06-08 09:41:55 +0000
committerRuslan Ermilov <ru@nginx.com>2012-06-08 09:41:55 +0000
commitd4353c6fd3685a6b906e5c037c11c8d90fa555cc (patch)
treef092d3e974ca59fb8539977325642c3b73e6a587 /auto/endianness
parent397a42eb44efb64e7319989f2cc7f678fbac578b (diff)
downloadnginx-d4353c6fd3685a6b906e5c037c11c8d90fa555cc.tar.gz
nginx-d4353c6fd3685a6b906e5c037c11c8d90fa555cc.tar.bz2
Fixed spelling of "endianness", and called it "byte ordering" in the
user visible part.
Diffstat (limited to 'auto/endianness')
-rw-r--r--auto/endianness45
1 files changed, 45 insertions, 0 deletions
diff --git a/auto/endianness b/auto/endianness
new file mode 100644
index 000000000..87311a0f1
--- /dev/null
+++ b/auto/endianness
@@ -0,0 +1,45 @@
+
+# Copyright (C) Igor Sysoev
+# Copyright (C) Nginx, Inc.
+
+
+echo $ngx_n "checking for system byte ordering ...$ngx_c"
+echo >> $NGX_ERR
+echo "checking for system byte ordering" >> $NGX_ERR
+
+
+cat << END > $NGX_AUTOTEST.c
+
+int main() {
+ int i = 0x11223344;
+ char *p;
+
+ p = (char *) &i;
+ if (*p == 0x44) return 0;
+ return 1;
+}
+
+END
+
+ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \
+ -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs"
+
+eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
+
+if [ -x $NGX_AUTOTEST ]; then
+ if $NGX_AUTOTEST >/dev/null 2>&1; then
+ echo " little endian"
+ have=NGX_HAVE_LITTLE_ENDIAN . auto/have
+ else
+ echo " big endian"
+ fi
+
+ rm $NGX_AUTOTEST*
+
+else
+ rm $NGX_AUTOTEST*
+
+ echo
+ echo "$0: error: cannot detect system byte ordering"
+ exit 1
+fi