summaryrefslogtreecommitdiffstats
path: root/rules/commoncpp2.in
blob: b91490f663aeae8b8c3cf4c8861c07ff88a4dd4b (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
## SECTION=system_libraries
# GNU commoncpp 2 configuration

menuconfig COMMONCPP2
	tristate
	prompt "commonc++ 2                   "
	select LIBC_RT
	select LIBC_PTHREAD
	select GCCLIBS_CXX
	select ZLIB if COMMONCPP2_LIBZ
	select LIBXML2 if COMMONCPP2_LIBXML2
	select LIBXML2_PUSH if COMMONCPP2_LIBXML2
	help
	  GNU Common C++ is a portable and highly optimized class
	  framework for writing C++ applications that need to use threads,
	  sockets, XML parsing, serialization, config files, etc.

	  For details see the project homepage:

		http://www.gnu.org/software/commoncpp/

if COMMONCPP2

config COMMONCPP2_LIBZ
	bool
	prompt "enable libz compression"

config COMMONCPP2_LIBXML2
	bool
	prompt "enable libxml2 parser"

endif