summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch
diff options
context:
space:
mode:
authorMei Lei <lei.mei@intel.com>2011-09-30 09:25:30 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-04 13:46:20 +0100
commitff7f503620c340fded3d1bdbdc02d90d21d58770 (patch)
tree93327ec100313142f5212151737719f8cfc79bb9 /meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch
parentdcd82f7ed4ed37d8e25fbc6f588e38c538a95ce4 (diff)
downloadpoky-ff7f503620c340fded3d1bdbdc02d90d21d58770.tar.gz
dropbear: Upgrade from 0.52 to 0.53.1
(From OE-Core rev: f1710d09e447b0f71a55b4ef24673c6388a045ad) Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch')
-rw-r--r--meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch b/meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch
new file mode 100644
index 0000000000..14a87705d0
--- /dev/null
+++ b/meta/recipes-core/dropbear/dropbear/dropbear-0.53.1-static_build_fix.patch
@@ -0,0 +1,29 @@
1Upstream-Status: Inappropriate [Pending]
2Get this patch from buildroot maillist.
3
4dropbear: fix static build
5
6The latest release 0.53.1 change: lcrypt needs to be before object files for static linking
7
8the -lcrypt is missing during the link
9
10svr-authpasswd.o: In function `svr_auth_password':
11svr-authpasswd.c:(.text+0xfc): undefined reference to `crypt'
12collect2: ld returned 1 exit status
13
14Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
15Signed-off-by: Mei Lei <lei.mei@intel.com>
16
17diff --git a/Makefile.in b/Makefile.in
18index 8d81647..0b9b769 100644
19--- a/Makefile.in
20+++ b/Makefile.in
21@@ -77,7 +77,7 @@ STRIP=@STRIP@
22 INSTALL=@INSTALL@
23 CPPFLAGS=@CPPFLAGS@
24 CFLAGS+=-I. -I$(srcdir) $(CPPFLAGS) @CFLAGS@
25-LIBS+=@LIBS@
26+LIBS+=@CRYPTLIB@ @LIBS@
27 LDFLAGS=@LDFLAGS@
28
29 EXEEXT=@EXEEXT@