[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#828904: FTBFS on GNU/Hurd



Package: src:mailutils
Version: 1:2.99.99-1
Tags: patch
User: debian-hurd@lists.debian.org
Usertags: hurd
X-Debbugs-CC: debian-hurd@lists.debian.org

Hi,
Currently mailutils FTBFS on GNU/Hurd due to missing rpl_strerror when
linking clexer[1]. This is because the configure script detected that
strerror should be replaced[2] (rightly or wrongly), but clexer doesn't
link against libgnu, despite using strerror (and thus needs its
replacement). The attached patch adds the missing dependency, and is
sufficient to make the package build on hurd-i386.

James

[1] https://buildd.debian.org/status/fetch.php?pkg=mailutils&arch=hurd-i386&ver=1%3A2.99.99-1&stamp=1462345727
[2] See the 's|@''REPLACE_STRERROR''@|1|g' command given to sed in the
    log above
--- a/gint/Makefile.am
+++ b/gint/Makefile.am
@@ -28,6 +28,8 @@
 else
 noinst_PROGRAMS = clexer
 clexer_SOURCES = clexer.l
+clexer_DEPENDENCIES = ../lib/gnu/libgnu.la
+clexer_LDADD = ../lib/gnu/libgnu.la
 AM_CPPFLAGS = @GINT_INCLUDES@
 LDADD = @GINT_LDADD@
 endif

Attachment: signature.asc
Description: PGP signature


Reply to: