1config 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 11 http://smstools3.kekekasvi.com/ 12 13if BR2_PACKAGE_SMSTOOLS3 14 15config BR2_PACKAGE_SMSTOOLS3_NB_MODEMS 16 int "Number of modems to support" 17 default 1 18 help 19 To reduce memory footprint of SMS Server Tools, you can 20 specify the exact number of modems connected to your 21 board. By default only 1 modem is used. 22 23endif 24 25comment "smstools3 needs a toolchain w/ wchar, threads" 26 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 27 depends on BR2_USE_MMU 28