summaryrefslogtreecommitdiff
path: root/package/rrs/Config.in
diff options
context:
space:
mode:
authorwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
committerwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
commit219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch)
treeb9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/rrs/Config.in
Initial import
Diffstat (limited to 'package/rrs/Config.in')
-rw-r--r--package/rrs/Config.in48
1 files changed, 48 insertions, 0 deletions
diff --git a/package/rrs/Config.in b/package/rrs/Config.in
new file mode 100644
index 000000000..6fe48d0fd
--- /dev/null
+++ b/package/rrs/Config.in
@@ -0,0 +1,48 @@
+config ADK_COMPILE_RRS
+ tristate
+ default n
+ depends ADK_PACKAGE_RRS || ADK_PACKAGE_RRS_NOSSL
+
+config ADK_PACKAGE_RRS
+ prompt "rrs............................... A reverse (connecting) remote shell, with SSL support"
+ tristate
+ default n
+ depends on ADK_CXX
+ select ADK_COMPILE_RRS
+ select ADK_PACKAGE_ZLIB
+ select ADK_PACKAGE_LIBOPENSSL
+ help
+ A reverse (connecting) remote shell, built with SSL support.
+
+ http://www.cycom.se/dl/rrs/
+
+config ADK_PACKAGE_RRS_NOSSL
+ prompt "rrs-nossl......................... A reverse (connecting) remote shell, without SSL support"
+ tristate
+ default n
+ depends on ADK_CXX
+ select ADK_COMPILE_RRS
+ select ADK_PACKAGE_ZLIB
+ help
+ A reverse (connecting) remote shell, built without SSL support.
+
+ http://www.cycom.se/dl/rrs/
+
+choice
+prompt "C++ library to use"
+depends on ADK_PACKAGE_RRS
+default ADK_COMPILE_RRS_WITH_STDCXX if ADK_TARGET_LIB_GLIBC
+default ADK_COMPILE_RRS_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
+
+config ADK_COMPILE_RRS_WITH_STDCXX
+ bool "Standard C++ library"
+ select ADK_PACKAGE_LIBSTDCXX
+ help
+
+config ADK_COMPILE_RRS_WITH_UCLIBCXX
+ bool "Embedded uClibc++ library"
+ select ADK_PACKAGE_UCLIBCXX
+ help
+
+endchoice
+