comparison auto/lib/libxslt/conf @ 2139:dad4423ef56a

ngx_http_xslt_filter_module
author Igor Sysoev <igor@sysoev.ru>
date Mon, 04 Aug 2008 14:48:15 +0000
parents
children 11c59ecbd04f
comparison
equal deleted inserted replaced
2138:fb3b084e7d42 2139:dad4423ef56a
1
2 # Copyright (C) Igor Sysoev
3
4
5 ngx_feature="libxslt"
6 ngx_feature_name=
7 ngx_feature_run=no
8 ngx_feature_incs="#include <libxml/parser.h>
9 #include <libxml/tree.h>
10 #include <libxslt/xslt.h>
11 #include <libxslt/xsltInternals.h>
12 #include <libxslt/transform.h>
13 #include <libxslt/xsltutils.h>"
14 ngx_feature_path="/usr/include/libxml2"
15 ngx_feature_libs="-lxml2 -lxslt"
16 ngx_feature_test="xmlParserCtxtPtr ctxt = NULL;
17 xsltStylesheetPtr sheet = NULL;
18 xmlDocPtr doc;
19 doc = xmlParseChunk(ctxt, NULL, 0, 0);
20 xsltApplyStylesheet(sheet, doc, NULL);"
21 . auto/feature
22
23
24 if [ $ngx_found = no ]; then
25
26 # FreeBSD port
27
28 ngx_feature="libxslt in /usr/local/"
29 ngx_feature_path="/usr/local/include/libxml2 /usr/local/include"
30
31 if [ $NGX_RPATH = YES ]; then
32 ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lxml2 -lxslt"
33 else
34 ngx_feature_libs="-L/usr/local/lib -lxml2 -lxslt"
35 fi
36
37 . auto/feature
38 fi
39
40
41 if [ $ngx_found = no ]; then
42
43 # NetBSD port
44
45 ngx_feature="libxslt in /usr/pkg/"
46 ngx_feature_path="/usr/pkg/include/libxml2 /usr/pkg/include"
47
48 if [ $NGX_RPATH = YES ]; then
49 ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lxml2 -lxslt"
50 else
51 ngx_feature_libs="-L/usr/pkg/lib -lxml2 -lxslt"
52 fi
53
54 . auto/feature
55 fi
56
57
58 if [ $ngx_found = no ]; then
59
60 # MacPorts
61
62 ngx_feature="libxslt in /opt/local/"
63 ngx_feature_path="/opt/local/include/libxml2 /opt/local/include"
64
65 if [ $NGX_RPATH = YES ]; then
66 ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lxml2 -lxslt"
67 else
68 ngx_feature_libs="-L/opt/local/lib -lxml2 -lxslt"
69 fi
70
71 . auto/feature
72 fi
73
74
75 if [ $ngx_found = yes ]; then
76 CORE_INCS="$CORE_INCS $ngx_feature_path"
77 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
78 fi