diff -u theorur-0.5.5/debian/changelog theorur-0.5.5/debian/changelog --- theorur-0.5.5/debian/changelog +++ theorur-0.5.5/debian/changelog @@ -1,3 +1,10 @@ +theorur (0.5.5-0ubuntu2) oneiric; urgency=low + + * Fix link order to list libraries after the objects that require them + (LP: #832903). + + -- Colin Watson Sun, 11 Sep 2011 16:43:54 +0100 + theorur (0.5.5-0ubuntu1) jaunty; urgency=low * Initial release (LP: #230440). diff -u theorur-0.5.5/debian/control theorur-0.5.5/debian/control --- theorur-0.5.5/debian/control +++ theorur-0.5.5/debian/control @@ -1,7 +1,7 @@ Source: theorur Section: net Priority: optional -Maintainer: Ubuntu MOTU Developers +Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Alessio Treglia Build-Depends: debhelper (>= 6.0.7), autotools-dev, libgtk2.0-dev Standards-Version: 3.8.0 only in patch2: unchanged: --- theorur-0.5.5.orig/Makefile.in +++ theorur-0.5.5/Makefile.in @@ -35,7 +35,7 @@ all: theorur theorur: theorur.o interface.o config_files.o tooltips.o man_gzip - $(CC) $(CFLAGS) @GTK_LIBS@ @GTK_CFLAGS@ -DVERSION="\"$(VERSION)\"" theorur.o interface.o config_files.o tooltips.o -o theorur + $(CC) $(CFLAGS) @GTK_CFLAGS@ -DVERSION="\"$(VERSION)\"" theorur.o interface.o config_files.o tooltips.o -o theorur @GTK_LIBS@ theorur.o: theorur.c $(CC) @GTK_CFLAGS@ -DINTLPREFIX="\"$(INTLPREFIX)\"" -DVERSION="\"$(VERSION)\"" -c theorur.c -o theorur.o