Package: dropbear Version: 0.53.1-1 Severity: wishlist Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu oneiric ubuntu-patch
*** /tmp/tmpUxiZEu In Ubuntu, the attached patch was applied to achieve the following: Hi, dropbear fails to build from source with binutils-gold, this patch solves this problem. * debian/diff/0004-fix-ftbfs-with-binutils-gold.diff: - Add -lcrypt to fix ftbfs with binutils gold. Thanks for considering the patch. Regards, -- System Information: Debian Release: wheezy/sid APT prefers oneiric-updates APT policy: (500, 'oneiric-updates'), (500, 'oneiric') Architecture: amd64 (x86_64) Kernel: Linux 3.0-1-generic (SMP w/1 CPU core) Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -u dropbear-0.53.1/debian/changelog dropbear-0.53.1/debian/changelog only in patch2: unchanged: --- dropbear-0.53.1.orig/debian/diff/0004-fix-ftbfs-with-binutils-gold.diff +++ dropbear-0.53.1/debian/diff/0004-fix-ftbfs-with-binutils-gold.diff @@ -0,0 +1,17 @@ +Author: Angel Abad <angela...@ubuntu.com> +Description: Add -lcrypt to fix ftbfs with binutils gold + + +Index: dropbear-0.53.1/Makefile.in +=================================================================== +--- dropbear-0.53.1.orig/Makefile.in 2011-06-27 22:36:15.100657977 +0200 ++++ dropbear-0.53.1/Makefile.in 2011-06-27 22:36:24.100544832 +0200 +@@ -19,7 +19,7 @@ + ifeq (@BUNDLED_LIBTOM@, 1) + LIBTOM_DEPS=$(LTC) $(LTM) + CFLAGS+=-I$(srcdir)/libtomcrypt/src/headers/ +-LIBS+=$(LTC) $(LTM) ++LIBS+=$(LTC) $(LTM) -lcrypt + endif + + COMMONOBJS=dbutil.o buffer.o \