summaryrefslogtreecommitdiffstats
path: root/rules/liblzo.in
blob: 62c74c7155857b946131058c7f864eeaa6dde37c (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
## SECTION=system_libraries
#
# rules/liblzo.in
#
menuconfig LIBLZO
	tristate
	prompt "liblzo                        "
	help
	  Compiles the LZO compression libraries on your target system.

          See http://www.oberhumer.com/opensource/lzo/ for info about it.

if LIBLZO

config LIBLZO_SHARED
	bool
	default y
	prompt "Create shared library"
	help
	  Create a shared library and install it into /usr/lib

config LIBLZO_STATIC
	bool
	prompt "Create static link library"
	help
	  Create a static link library and install it into /usr/lib.
	  Normally not needed.

endif