summaryrefslogtreecommitdiffstats
path: root/rules/liblzo.in
blob: 5c8119e9f4f5feb90a4cce9ad4ee5c55f4894029 (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
#
# rules/liblzo.in
#
menuconfig LIBLZO
	tristate
	default n
	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
	default n
	prompt "Create static link library"
	help
	  Create a static link library and install it into /usr/lib.
	  Normally not needed.

endif