aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dropbear/dropbear-2012.55/configure.patch
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-03-14 17:08:46 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-21 12:40:08 +0000
commit1804020514f122a3b3825c627e8eb51017425bbb (patch)
tree8700eb7a374515983340edbb64f95d8ede31b0a4 /meta/recipes-core/dropbear/dropbear-2012.55/configure.patch
parentade51262effbf809c23bcf879ba43b7945e459ff (diff)
downloadopenembedded-core-contrib-1804020514f122a3b3825c627e8eb51017425bbb.tar.gz
dropbear: upgrade to 2012.55
Signed-off-by: Shane Wang <shane.wang@intel.com>
Diffstat (limited to 'meta/recipes-core/dropbear/dropbear-2012.55/configure.patch')
-rw-r--r--meta/recipes-core/dropbear/dropbear-2012.55/configure.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-core/dropbear/dropbear-2012.55/configure.patch b/meta/recipes-core/dropbear/dropbear-2012.55/configure.patch
new file mode 100644
index 0000000000..aeb7c0a4ac
--- /dev/null
+++ b/meta/recipes-core/dropbear/dropbear-2012.55/configure.patch
@@ -0,0 +1,29 @@
+Upstream-Status: Pending
+
+Index: dropbear-0.49/configure.in
+===================================================================
+--- dropbear-0.49.orig/configure.in
++++ dropbear-0.49/configure.in
+@@ -164,14 +164,20 @@ AC_ARG_ENABLE(openpty,
+ AC_MSG_NOTICE(Not using openpty)
+ else
+ AC_MSG_NOTICE(Using openpty if available)
+- AC_SEARCH_LIBS(openpty, util, [AC_DEFINE(HAVE_OPENPTY,,Have openpty() function)])
++ AC_SEARCH_LIBS(openpty, util, [dropbear_cv_func_have_openpty=yes])
+ fi
+ ],
+ [
+ AC_MSG_NOTICE(Using openpty if available)
+- AC_SEARCH_LIBS(openpty, util, [AC_DEFINE(HAVE_OPENPTY)])
++ AC_SEARCH_LIBS(openpty, util, [dropbear_cv_func_have_openpty=yes])
+ ]
+ )
++
++if test "x$dropbear_cv_func_have_openpty" = "xyes"; then
++ AC_DEFINE(HAVE_OPENPTY,,Have openpty() function)
++ no_ptc_check=yes
++ no_ptmx_check=yes
++fi
+
+
+ AC_ARG_ENABLE(syslog,