]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/openobex/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / openobex / Config.in
1 config BR2_PACKAGE_OPENOBEX
2         bool "openobex"
3         depends on BR2_INET_IPV6
4         help
5           Free open source implementation of the Object Exchange (OBEX)
6           protocol.
7
8           http://www.openobex.org
9
10 if BR2_PACKAGE_OPENOBEX
11
12 config BR2_PACKAGE_OPENOBEX_BLUEZ
13         bool "enable bluez support"
14         depends on !BR2_avr32
15         depends on !BR2_STATIC_LIBS # bluez_utils
16         depends on BR2_USE_WCHAR # libglib2
17         depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib, libglib2
18         depends on BR2_USE_MMU # dbus
19         select BR2_PACKAGE_BLUEZ_UTILS
20
21 comment "bluez support needs a toolchain w/ wchar, threads, dynamic library"
22         depends on !BR2_avr32 && BR2_USE_MMU
23         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
24
25 config BR2_PACKAGE_OPENOBEX_LIBUSB
26         bool "enable libusb support"
27         depends on BR2_TOOLCHAIN_HAS_THREADS
28         select BR2_PACKAGE_LIBUSB
29
30 comment "libusb support needs a toolchain w/ threads"
31         depends on !BR2_TOOLCHAIN_HAS_THREADS
32
33 config BR2_PACKAGE_OPENOBEX_APPS
34         bool "install test applications"
35         help
36           Also install the openobex test applications on target.
37
38 config BR2_PACKAGE_OPENOBEX_SYSLOG
39         bool "enable debugging to the system logger"
40
41 config BR2_PACKAGE_OPENOBEX_DUMP
42         bool "enable protocol dumping for debugging"
43
44 endif
45
46 comment "openobex needs a toolchain w/ IPv6"
47         depends on !BR2_INET_IPV6