comparison auto/lib/google-perftools/conf @ 4725:47936d1c98e9 stable-1.2

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.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 02 Jul 2012 16:51:02 +0000
parents d620f497c50f
children 0e1491139947
comparison
equal deleted inserted replaced
4724:0141b4aec0e4 4725:47936d1c98e9
27 27
28 . auto/feature 28 . auto/feature
29 fi 29 fi
30 30
31 31
32 if [ $ngx_found = no ]; then
33
34 # MacPorts
35
36 ngx_feature="Google perftools in /opt/local/"
37
38 if [ $NGX_RPATH = YES ]; then
39 ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lprofiler"
40 else
41 ngx_feature_libs="-L/opt/local/lib -lprofiler"
42 fi
43
44 . auto/feature
45 fi
46
47
32 if [ $ngx_found = yes ]; then 48 if [ $ngx_found = yes ]; then
33 CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 49 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
34 50
35 else 51 else
36 52