aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-07-02 16:51:02 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2012-07-02 16:51:02 +0000
commit7138ca1704831157e6cea929c3f87185016e0d17 (patch)
tree7ec14337794b1f0afdee28d8ee3eb9a0e76652cb
parenteaf3544e15cc7551efa128ed5bb67851cb57d11e (diff)
downloadnginx-7138ca1704831157e6cea929c3f87185016e0d17.tar.gz
nginx-7138ca1704831157e6cea929c3f87185016e0d17.zip
Merge of r4682, r4694, r4699, r4704, r4705: minor nits.
*) Fixed spelling of "endianness", and called it "byte ordering" in the user visible part. *) Fixed return type of ngx_strerror_init(). *) Fixed a harmless error in spelling of "Connection: close" when computing the response header length. *) Style. *) Added code to look up Google perftools in /opt/local/, for MacPorts.
-rw-r--r--auto/endianness (renamed from auto/endianess)10
-rw-r--r--auto/lib/google-perftools/conf16
-rwxr-xr-xauto/unix2
-rw-r--r--src/http/modules/ngx_http_geo_module.c2
-rw-r--r--src/http/ngx_http_header_filter_module.c2
-rw-r--r--src/os/unix/ngx_errno.c2
-rw-r--r--src/os/unix/ngx_errno.h2
-rw-r--r--src/os/win32/ngx_errno.c2
-rw-r--r--src/os/win32/ngx_errno.h2
-rw-r--r--src/os/win32/ngx_files.c2
10 files changed, 29 insertions, 13 deletions
diff --git a/auto/endianess b/auto/endianness
index 452dd7c12..87311a0f1 100644
--- a/auto/endianess
+++ b/auto/endianness
@@ -3,9 +3,9 @@
# Copyright (C) Nginx, Inc.
-echo $ngx_n "checking for system endianess ...$ngx_c"
+echo $ngx_n "checking for system byte ordering ...$ngx_c"
echo >> $NGX_ERR
-echo "checking for system endianess" >> $NGX_ERR
+echo "checking for system byte ordering" >> $NGX_ERR
cat << END > $NGX_AUTOTEST.c
@@ -28,10 +28,10 @@ eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
if [ -x $NGX_AUTOTEST ]; then
if $NGX_AUTOTEST >/dev/null 2>&1; then
- echo " little endianess"
+ echo " little endian"
have=NGX_HAVE_LITTLE_ENDIAN . auto/have
else
- echo " big endianess"
+ echo " big endian"
fi
rm $NGX_AUTOTEST*
@@ -40,6 +40,6 @@ else
rm $NGX_AUTOTEST*
echo
- echo "$0: error: can not detect system endianess"
+ echo "$0: error: cannot detect system byte ordering"
exit 1
fi
diff --git a/auto/lib/google-perftools/conf b/auto/lib/google-perftools/conf
index 398ddd05e..7a9de3002 100644
--- a/auto/lib/google-perftools/conf
+++ b/auto/lib/google-perftools/conf
@@ -29,6 +29,22 @@ if [ $ngx_found = no ]; then
fi
+if [ $ngx_found = no ]; then
+
+ # MacPorts
+
+ ngx_feature="Google perftools in /opt/local/"
+
+ if [ $NGX_RPATH = YES ]; then
+ ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lprofiler"
+ else
+ ngx_feature_libs="-L/opt/local/lib -lprofiler"
+ fi
+
+ . auto/feature
+fi
+
+
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
diff --git a/auto/unix b/auto/unix
index 783219e2d..b0a0e4c88 100755
--- a/auto/unix
+++ b/auto/unix
@@ -464,7 +464,7 @@ ngx_type="rlim_t"; ngx_types="int"; . auto/types/typedef
. auto/types/uintptr_t
-. auto/endianess
+. auto/endianness
ngx_type="size_t"; . auto/types/sizeof
ngx_param=NGX_MAX_SIZE_T_VALUE; ngx_value=$ngx_max_value; . auto/types/value
diff --git a/src/http/modules/ngx_http_geo_module.c b/src/http/modules/ngx_http_geo_module.c
index e792cdb66..189d8ed50 100644
--- a/src/http/modules/ngx_http_geo_module.c
+++ b/src/http/modules/ngx_http_geo_module.c
@@ -145,7 +145,7 @@ typedef struct {
u_char GEORNG[6];
u_char version;
u_char ptr_size;
- uint32_t endianess;
+ uint32_t endianness;
uint32_t crc32;
} ngx_http_geo_header_t;
diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c
index 19f531b5d..1e01c857d 100644
--- a/src/http/ngx_http_header_filter_module.c
+++ b/src/http/ngx_http_header_filter_module.c
@@ -395,7 +395,7 @@ ngx_http_header_filter(ngx_http_request_t *r)
}
} else {
- len += sizeof("Connection: closed" CRLF) - 1;
+ len += sizeof("Connection: close" CRLF) - 1;
}
#if (NGX_HTTP_GZIP)
diff --git a/src/os/unix/ngx_errno.c b/src/os/unix/ngx_errno.c
index 75176c49a..e787b2377 100644
--- a/src/os/unix/ngx_errno.c
+++ b/src/os/unix/ngx_errno.c
@@ -42,7 +42,7 @@ ngx_strerror(ngx_err_t err, u_char *errstr, size_t size)
}
-ngx_uint_t
+ngx_int_t
ngx_strerror_init(void)
{
char *msg;
diff --git a/src/os/unix/ngx_errno.h b/src/os/unix/ngx_errno.h
index 2912dea04..125087e78 100644
--- a/src/os/unix/ngx_errno.h
+++ b/src/os/unix/ngx_errno.h
@@ -69,7 +69,7 @@ typedef int ngx_err_t;
u_char *ngx_strerror(ngx_err_t err, u_char *errstr, size_t size);
-ngx_uint_t ngx_strerror_init(void);
+ngx_int_t ngx_strerror_init(void);
#endif /* _NGX_ERRNO_H_INCLUDED_ */
diff --git a/src/os/win32/ngx_errno.c b/src/os/win32/ngx_errno.c
index f6d947a75..b732bf4b1 100644
--- a/src/os/win32/ngx_errno.c
+++ b/src/os/win32/ngx_errno.c
@@ -53,7 +53,7 @@ ngx_strerror(ngx_err_t err, u_char *errstr, size_t size)
}
-ngx_uint_t
+ngx_int_t
ngx_strerror_init(void)
{
return NGX_OK;
diff --git a/src/os/win32/ngx_errno.h b/src/os/win32/ngx_errno.h
index 5b11a65b0..090ba1b53 100644
--- a/src/os/win32/ngx_errno.h
+++ b/src/os/win32/ngx_errno.h
@@ -59,7 +59,7 @@ typedef DWORD ngx_err_t;
u_char *ngx_strerror(ngx_err_t err, u_char *errstr, size_t size);
-ngx_uint_t ngx_strerror_init(void);
+ngx_int_t ngx_strerror_init(void);
#endif /* _NGX_ERRNO_H_INCLUDED_ */
diff --git a/src/os/win32/ngx_files.c b/src/os/win32/ngx_files.c
index 11d9c35ac..ee846cdf3 100644
--- a/src/os/win32/ngx_files.c
+++ b/src/os/win32/ngx_files.c
@@ -722,7 +722,7 @@ ngx_win32_check_filename(u_char *name, u_short *u, size_t len)
if (ch == ':') {
goto invalid;
}
-
+
if (ch == '.' || ch == ' ') {
break;
}