summaryrefslogtreecommitdiffstats
path: root/rules/xmlrpc-c.in
blob: 5da82249a4ab0c61bef244f7672b5960aff7a201 (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
## SECTION=middleware

menuconfig XMLRPC_C
	tristate
	prompt "xmlrpc-c                      "
	select LIBC_M		if XMLRPC_C_CPLUSPLUS
	select GCCLIBS_CXX	if XMLRPC_C_CPLUSPLUS
	select GCCLIBS_GCC_S
	select LIBCURL		if XMLRPC_C_CURL
	select LIBXML2		if XMLRPC_C_LIBXML2
	help
	  A lightweight RPC library based on XML and HTTP for C and C++

	  XML-RPC is a quick-and-easy way to make procedure calls over
	  the Internet. It converts the procedure call into an XML
	  document, sends it to a remote server using HTTP, and gets
	  back the response as XML.

	  This library provides a modular implementation of XML-RPC
	  for C and C++.

if XMLRPC_C

config XMLRPC_C_CLIENT
	bool

config XMLRPC_C_CURL
	bool "include curl client transport"
	select XMLRPC_C_CLIENT
	default y

config XMLRPC_C_ABYSS_SERVER
	bool
	default y
#	prompt "include abyss server module"
# as of version 1.06.38 it doesn't build without it

config XMLRPC_C_ABYSS_THREADS
	bool "use fork in Abyss instead of pthreads"
	depends on XMLRPC_C_ABYSS_SERVER

config XMLRPC_C_CGI_SERVER
	bool "include CGI server module"
	default y

config XMLRPC_C_CPLUSPLUS
	bool "include C++ wrapper class"
	select XMLRPC_C_ABYSS_SERVER
	default y

config XMLRPC_C_LIBXML2
	bool "use libxml2 instead of built-in expat"

endif