]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/openvmtools/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / openvmtools / Config.in
1 config BR2_PACKAGE_OPENVMTOOLS
2         bool "openvmtools"
3         depends on BR2_i386 || BR2_x86_64
4         depends on BR2_USE_MMU # libglib2
5         depends on BR2_USE_WCHAR # libglib2
6         depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
7         depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
8         depends on BR2_LARGEFILE
9         depends on BR2_ENABLE_LOCALE
10         select BR2_PACKAGE_LIBGLIB2
11         help
12           Open Virtual Machine Tools for VMware guest OS
13
14           http://open-vm-tools.sourceforge.net/
15
16           ICU locales and X11 tools are currently not supported.
17
18           NOTE: Support for vmblock-fuse will be enabled in openvmtools if the
19                 libfuse package is selected.
20
21 if BR2_PACKAGE_OPENVMTOOLS
22
23 config BR2_PACKAGE_OPENVMTOOLS_PROCPS
24         bool "procps support"
25         depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
26         select BR2_PACKAGE_PROCPS_NG
27         help
28           Enable support for procps / meminfo
29
30 comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
31         depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
32
33 config BR2_PACKAGE_OPENVMTOOLS_DNET
34         bool "dnet support"
35         depends on BR2_INET_IPV6
36         select BR2_PACKAGE_LIBDNET
37         help
38           Enable support for libdnet / nicinfo
39
40 comment "dnet support needs a toolchain w/ IPv6"
41         depends on !BR2_INET_IPV6
42
43 config BR2_PACKAGE_OPENVMTOOLS_PAM
44         bool "PAM support"
45         select BR2_PACKAGE_LINUX_PAM
46         # linux-pam needs locale and wchar, but we already have this
47         # dependency on the main symbol, above.
48         depends on !BR2_STATIC_LIBS
49         help
50           Support for PAM in openvmtools
51
52 comment "PAM support needs a toolchain w/ dynamic library"
53         depends on BR2_STATIC_LIBS
54
55 endif
56
57 comment "openvmtools needs a toolchain w/ wchar, threads, RPC, largefile, locale"
58         depends on BR2_i386 || BR2_x86_64
59         depends on BR2_USE_MMU
60         depends on !BR2_USE_WCHAR ||!BR2_TOOLCHAIN_HAS_THREADS || \
61         !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_LARGEFILE || !BR2_ENABLE_LOCALE