Config.in 960 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_OFONO
  2. bool "ofono"
  3. depends on BR2_USE_WCHAR # gettext, libglib2, ell
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
  5. depends on BR2_USE_MMU # dbus, libglib2
  6. depends on !BR2_STATIC_LIBS # dlopen(), ell
  7. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  8. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 # ell
  9. select BR2_PACKAGE_DBUS
  10. select BR2_PACKAGE_ELL
  11. select BR2_PACKAGE_LIBCAP_NG
  12. select BR2_PACKAGE_LIBGLIB2
  13. select BR2_PACKAGE_MOBILE_BROADBAND_PROVIDER_INFO
  14. help
  15. oFono is a free, open source project for mobile telephony
  16. (GSM/UMTS) applications. It uses high-level D-Bus API for
  17. use by telephony applications. It uses 3GPP standard.
  18. http://ofono.org/
  19. comment "ofono needs a toolchain w/ dynamic library, wchar, threads, headers >= 4.12"
  20. depends on BR2_USE_MMU
  21. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  22. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || \
  23. !BR2_TOOLCHAIN_HAS_THREADS || \
  24. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12