board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / package / openobex / Config.in
blobed1b81fe424aeadff0388b6c1b4ef0534607c245
1 config BR2_PACKAGE_OPENOBEX
2         bool "openobex"
3         help
4           Free open source implementation of the Object Exchange (OBEX)
5           protocol.
7           http://sourceforge.net/projects/openobex
9 if BR2_PACKAGE_OPENOBEX
11 config BR2_PACKAGE_OPENOBEX_BLUEZ
12         bool "enable bluez support"
13         depends on !BR2_STATIC_LIBS # bluez_utils
14         depends on BR2_USE_WCHAR # libglib2
15         depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib, libglib2
16         depends on BR2_USE_MMU # dbus
17         select BR2_PACKAGE_BLUEZ_UTILS
19 comment "bluez support needs a toolchain w/ wchar, threads, dynamic library"
20         depends on BR2_USE_MMU
21         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
23 config BR2_PACKAGE_OPENOBEX_LIBUSB
24         bool "enable libusb support"
25         depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
26         select BR2_PACKAGE_LIBUSB
27         select BR2_PACKAGE_LIBUSB_COMPAT
29 comment "libusb support needs a toolchain w/ threads"
30         depends on !BR2_TOOLCHAIN_HAS_THREADS
32 config BR2_PACKAGE_OPENOBEX_APPS
33         bool "install test applications"
34         help
35           Also install the openobex test applications on target.
37 config BR2_PACKAGE_OPENOBEX_SYSLOG
38         bool "enable debugging to the system logger"
40 config BR2_PACKAGE_OPENOBEX_DUMP
41         bool "enable protocol dumping for debugging"
43 endif