Config.in 745 B

123456789101112131415161718192021222324252627
  1. config BR2_PACKAGE_SMSTOOLS3
  2. bool "smstools3"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. help
  7. The SMS Server Tools 3 is a SMS Gateway software which can
  8. send and receive short messages through GSM modems and
  9. mobile phones.
  10. http://smstools3.kekekasvi.com/
  11. if BR2_PACKAGE_SMSTOOLS3
  12. config BR2_PACKAGE_SMSTOOLS3_NB_MODEMS
  13. int "Number of modems to support"
  14. default 1
  15. help
  16. To reduce memory footprint of SMS Server Tools, you can
  17. specify the exact number of modems connected to your
  18. board. By default only 1 modem is used.
  19. endif
  20. comment "smstools3 needs a toolchain w/ wchar, threads"
  21. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
  22. depends on BR2_USE_MMU