From: Erik Hovland Date: Fri, 23 Feb 2007 22:13:13 +0000 (+0000) Subject: dropbear 0.49: Version bump X-Git-Tag: Release-2010-05/1~9156^2~2^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22943106bd8154e7b33ebea3980565f84db41fc8;p=openembedded.git dropbear 0.49: Version bump * A new release of dropbear is available. + New port and IP address binding feature + Coverity Prevent scan fixing + Klocwork scan fixing + Various other fixes and features --- diff --git a/packages/dropbear/dropbear-0.49/.mtn2git_empty b/packages/dropbear/dropbear-0.49/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/dropbear/dropbear-0.49/configure.patch b/packages/dropbear/dropbear-0.49/configure.patch new file mode 100644 index 0000000000..8d11b23f14 --- /dev/null +++ b/packages/dropbear/dropbear-0.49/configure.patch @@ -0,0 +1,27 @@ +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, diff --git a/packages/dropbear/dropbear_0.49.bb b/packages/dropbear/dropbear_0.49.bb new file mode 100644 index 0000000000..f98c0ac8f6 --- /dev/null +++ b/packages/dropbear/dropbear_0.49.bb @@ -0,0 +1 @@ +require dropbear.inc