summaryrefslogtreecommitdiffstats
path: root/rules/libxslt.in
blob: b2f26d0c822701f58dec530ae80e47d16d3bdca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
## SECTION=system_libraries

menuconfig LIBXSLT
	tristate
	prompt "libxslt                       "
	select LIBXML2
	select LIBXML2_OUTPUT
	select LIBXML2_XINCLUDE
	select LIBXML2_XPTR
	select LIBXML2_DOM
	select LIBXML2_HTML
	select LIBGCRYPT	if LIBXSLT_CRYPTO
	help
	  LibXSLT is a generic XSLT implementation. For details see the
	  project homepage:

		http://xmlsoft.org/XSLT/

if LIBXSLT
# ----- Compile Options

comment "Compile Options"

config LIBXSLT_CRYPTO
	bool
	prompt "Add crypto support to exslt"

config LIBXSLT_PLUGINS
	bool
	prompt "Add plugin extension support "
	default y

config LIBXSLT_DEBUG
	bool
	prompt "Add the debugging support"

comment "Install Components"

config LIBXSLT_LIBXSLT
	bool
	prompt "libxslt"
	default y

config LIBXSLT_LIBEXSLT
	bool
	prompt "libexslt"
	default y

config LIBXSLT_XSLTPROC
	bool
	prompt "xsltproc"
	select LIBXSLT_LIBEXSLT
	select LIBXSLT_LIBXSLT
	help
	  xsltproc is an XML stylesheet processor. See
	  http://xmlsoft.org/XSLT for details.

endif