summaryrefslogtreecommitdiffstats
path: root/rules/sitecopy.in
blob: aa912c443c22daefbacb9611e8cf68da52978538 (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
## SECTION=networking

menuconfig SITECOPY
	tristate
	prompt "sitecopy                      "
	select EXPAT		if SITECOPY_XML_EXPAT
	select LIBXML2		if SITECOPY_XML_LIBXML2
	select OPENSSL		if SITECOPY_OPENSSL
	help
	  Synchronize local and remote web site via FTP or WebDAV
        
if SITECOPY

config SITECOPY_FTP
	bool
	prompt "FTP support enabled"
	help
	  Build with FTP support. No additional dependencies.

config SITECOPY_RSH
	bool
	prompt "rsh/rcp support enabled"
	help
	  Build with rsh/rcp support. No additional dependencies.

config SITECOPY_SFTP
	bool
	prompt "sftp/scp support enabled"
	help
	  Build with sftp/scp support. No additional dependencies.

config SITECOPY_WEBDAV
	bool
	prompt "WebDAV support enabled"
	help
	  Build with WebDAV support. No additional dependencies.

config SITECOPY_OPENSSL
	bool
	prompt "SSL support with OpenSSL"
	help
	  Build with SSL support. Required OpenSSL to be built.

choice
	prompt "xml library       "
	default SITECOPY_XML_EXPAT

	config SITECOPY_XML_EXPAT
		bool
		prompt "expat  "

	config SITECOPY_XML_LIBXML2
		bool
		prompt "libxml2"
endchoice

endif