netsnmp: handle libnl dependency properly
[buildroot-gz.git] / package / openvmtools / Config.in
blob79c503cfb882218ab4d65cdcaac73a37a4799d46
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_ENABLE_LOCALE
9         depends on !BR2_TOOLCHAIN_USES_UCLIBC
10         select BR2_PACKAGE_LIBGLIB2
11         select BR2_PACKAGE_LIBDNET
12         help
13           Open Virtual Machine Tools for VMware guest OS
15           http://open-vm-tools.sourceforge.net/
17           ICU locales, Xerces, and X11 tools are currently not supported.
19           NOTE: Support for vmblock-fuse will be enabled in openvmtools if the
20                 libfuse package is selected.
22 if BR2_PACKAGE_OPENVMTOOLS
24 config BR2_PACKAGE_OPENVMTOOLS_PROCPS
25         bool "procps support"
26         depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
27         select BR2_PACKAGE_PROCPS_NG
28         help
29           Enable support for procps / meminfo
31 comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
32         depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
34 config BR2_PACKAGE_OPENVMTOOLS_PAM
35         bool "PAM support"
36         select BR2_PACKAGE_LINUX_PAM
37         # linux-pam needs locale and wchar, but we already have this
38         # dependency on the main symbol, above.
39         depends on !BR2_STATIC_LIBS
40         depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
41         help
42           Support for PAM in openvmtools
44 comment "PAM support needs a glibc toolchain w/ dynamic library"
45         depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
47 endif
49 comment "openvmtools needs a glibc or musl toolchain w/ wchar, threads, RPC, locale"
50         depends on BR2_i386 || BR2_x86_64
51         depends on BR2_USE_MMU
52         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
53                 !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_ENABLE_LOCALE || \
54                 BR2_TOOLCHAIN_USES_UCLIBC