=== freeflying is now known as freeflying_away === TheDrums is now known as DalekSec === freeflying_away is now known as freeflying === funkyHat_ is now known as funkyHat === freeflying is now known as freeflying_away === freeflying_away is now known as freeflying === paddy_ is now known as paddy === j_f-f_ is now known as j_f-f [21:04] Can someone help me with https://launchpadlibrarian.net/158050859/buildlog_ubuntu-trusty-i386.netmate_0.2.0-1_FAILEDTOBUILD.txt.gz ? [21:05] It should just need a small patch to http://sources.debian.net/src/netmate/0.2.0-1/Makefile , but i'm not sure exactly what needs changing [21:07] sounds like link option ordering, from a first glance [21:11] Noskcaj: one should have "-lfoo" things after "-o netmate" not before. [21:11] ok, thanks. [21:12] Noskcaj: otherwise linker goes "hm... a bunch of gtk symbols, but nothing have used them yet, drop them all"...... "hm... a bunch of gtk symbols needed, but i don't have any" [21:12] makes sense [21:25] xnox, should it be "gcc -o netmate.o $(CPPFLAGS) $(GTK_CFLAGS) $(CFLAGS) -c netmate.c" or have i still gt the ordering wrong [21:25] no [21:25] the libs need to go right at the end [21:25] after the object files using their symbols to be exact [21:25] so after netmake.o [21:26] the line you pasted is fine, its a compile line not a link line [21:27] jtaylor, What should i be doing to fix this ftbfs then? The makefile is in the link above [21:27] change: gcc $(GTK_LIBS) -lpcap $(LDFLAGS) netmate.o -o netmate [21:27] to: gcc $(LDFLAGS) netmate.o $(GTK_LIBS) -lpcap -o netmate [21:28] ok, thanks for the help [21:28] the flags should also you dpkg-buildflags as your at it [21:29] nevermind its an pstream makefile