Your message dated Sun, 27 Nov 2016 23:50:52 +0000
with message-id <[email protected]>
and subject line Bug#845918: Removed package(s) from unstable
has caused the Debian Bug report #641423,
regarding muddleftpd: FTBFS with ld that defaults to --as-needed: bad link order
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
641423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=641423
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: muddleftpd
Version: 1.3.13.1-4.2
Severity: important
Tags: patch
User: [email protected]
Usertags: origin-ubuntu ubuntu-patch oneiric

muddleftpd fails to build with a linker that defaults to --as-needed, as
shown in this Ubuntu bug report:

  https://bugs.launchpad.net/ubuntu/+source/muddleftpd/+bug/771107

This is because of incorrect link ordering: it puts libraries before the
objects that use them rather than after.  See:

  http://wiki.debian.org/ToolChain/DSOLinking#Only_link_with_needed_libraries

The following patch fixes this.

  * Fix link order to list libraries after the objects that require them.

--- muddleftpd-1.3.13.1.orig/src/Makefile.in
+++ muddleftpd-1.3.13.1/src/Makefile.in
@@ -87,19 +87,19 @@
        $(CC) $(CFLAGS) -DDATESTR="\"$(shell date)\"" -c $(@:.o=.c) -o $@
 
 $(WHOPROG): $(WHOOBJ)
-       $(CC) $(CFLAGS) $(LIBS) -o $(WHOPROG) $(WHOOBJ)
+       $(CC) $(CFLAGS) -o $(WHOPROG) $(WHOOBJ) $(LIBS)
 
 $(MUDPASSWDPROG): $(MUDPASSWDOBJ)
-       $(CC) $(CFLAGS) $(LIBS) -o $(MUDPASSWDPROG) $(MUDPASSWDOBJ)
+       $(CC) $(CFLAGS) -o $(MUDPASSWDPROG) $(MUDPASSWDOBJ) $(LIBS)
 
 $(RATIOTOOLPROG): $(RATIOTOOLOBJ)
-       $(CC) $(CFLAGS) $(LIBS) -o $(RATIOTOOLPROG) $(RATIOTOOLOBJ)
+       $(CC) $(CFLAGS) -o $(RATIOTOOLPROG) $(RATIOTOOLOBJ) $(LIBS)
 
 $(MUDOUTPROG): $(OBJ)
-       $(CC) $(CFLAGS) $(LIBS) -o $(MUDOUTPROG) $(OBJ)
+       $(CC) $(CFLAGS) -o $(MUDOUTPROG) $(OBJ) $(LIBS)
 
 $(MUDLOGD): $(MUDLOGDOBJ)
-       $(CC) $(CFLAGS) $(LIBS) -o $(MUDLOGD) $(MUDLOGDOBJ)
+       $(CC) $(CFLAGS) -o $(MUDLOGD) $(MUDLOGDOBJ) $(LIBS)
 
 install: all
        mkdir -p $(BINDIR)

Thanks,

-- 
Colin Watson                                       [[email protected]]



--- End Message ---
--- Begin Message ---
Version: 1.3.13.1-4.3+rm

Dear submitter,

as the package muddleftpd has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/845918

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to