Package: mpc123 Version: 0.2.4-1.1 Severity: normal Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu oneiric ubuntu-patch
In Ubuntu, the attached patch was applied to achieve the following: * Makefile: rearrange linker order to fix new DSO linking FTBFS (LP: #770862) Thanks for considering the patch. -- System Information: Debian Release: squeeze/sid APT prefers natty-updates APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-11-generic (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -u mpc123-0.2.4/debian/control mpc123-0.2.4/debian/control --- mpc123-0.2.4/debian/control +++ mpc123-0.2.4/debian/control @@ -1,7 +1,8 @@ Source: mpc123 Section: sound Priority: optional -Maintainer: Daniele Sempione <scr...@oziosi.org> +Maintainer: Ubuntu Developers <ubuntu-devel-disc...@lists.ubuntu.com> +XSBC-Original-Maintainer: Daniele Sempione <scr...@oziosi.org> Build-Depends: debhelper (>= 4.0.0), libmpcdec-dev (>= 2:0.1~r435), libao-dev, gettext Standards-Version: 3.7.3 diff -u mpc123-0.2.4/debian/changelog mpc123-0.2.4/debian/changelog only in patch2: unchanged: --- mpc123-0.2.4.orig/Makefile +++ mpc123-0.2.4/Makefile @@ -50,7 +50,7 @@ $(TARGET): $(DEPS) $(TARGET).c $(MOS) @echo Building mpc123 version $(MAJOR).$(MINOR) ... - $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $(DEPS) $(TARGET).c + $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(DEPS) $(TARGET).c $(LDFLAGS) .PHONY: clean tarball