comparison auto/lib/libxslt/conf @ 418:ff86d646f9df NGINX_0_7_21

nginx 0.7.21 *) Changes in the ngx_http_limit_req_module. *) Feature: the EXSLT support in the ngx_http_xslt_module. Thanks to Denis F. Latypoff. *) Workaround: compatibility with glibc 2.3. Thanks to Eric Benson and Maxim Dounin. *) Bugfix: nginx could not run on MacOSX 10.4 and earlier; the bug had appeared in 0.7.6.
author Igor Sysoev <http://sysoev.ru>
date Tue, 11 Nov 2008 00:00:00 +0300
parents 349057ecf4d5
children d0f7a625f27c
comparison
equal deleted inserted replaced
417:735cec38a814 418:ff86d646f9df
86 86
87 END 87 END
88 88
89 exit 1 89 exit 1
90 fi 90 fi
91
92
93 ngx_feature="libexslt"
94 ngx_feature_name=NGX_HAVE_EXSLT
95 ngx_feature_run=no
96 ngx_feature_incs="#include <libexslt/exslt.h>"
97 ngx_feature_path="/usr/include/libxml2"
98 ngx_feature_libs="-lexslt"
99 ngx_feature_test="exsltRegisterAll();"
100 . auto/feature
101
102 if [ $ngx_found = no ]; then
103
104 # FreeBSD port
105
106 ngx_feature="libexslt in /usr/local/"
107 ngx_feature_path="/usr/local/include/libxml2 /usr/local/include"
108
109 if [ $NGX_RPATH = YES ]; then
110 ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lexslt"
111 else
112 ngx_feature_libs="-L/usr/local/lib -lexslt"
113 fi
114
115 . auto/feature
116 fi
117
118
119 if [ $ngx_found = no ]; then
120
121 # NetBSD port
122
123 ngx_feature="libexslt in /usr/pkg/"
124 ngx_feature_path="/usr/pkg/include/libxml2 /usr/local/include"
125
126 if [ $NGX_RPATH = YES ]; then
127 ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lexslt"
128 else
129 ngx_feature_libs="-L/usr/pkg/lib -lexslt"
130 fi
131
132 . auto/feature
133 fi
134
135
136 if [ $ngx_found = no ]; then
137
138 # MacPorts
139
140 ngx_feature="libexslt in /opt/local/"
141 ngx_feature_path="/opt/local/include/libxml2 /opt/local/include"
142
143 if [ $NGX_RPATH = YES ]; then
144 ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lexslt"
145 else
146 ngx_feature_libs="-L/opt/local/lib -lexslt"
147 fi
148
149 . auto/feature
150 fi
151
152
153 if [ $ngx_found = yes ]; then
154 CORE_LIBS="$CORE_LIBS -lexslt"
155 fi