Author: Andreas Moog LastChanged: Sun, 10 Nov 2013 23:36:39 +0100 Description: Upstream tried to prevent linking against unneeded libraries but by doing so they also prevented -lgio from the set of libraries we need to link against. . See: https://lists.debian.org/debian-mentors/2013/11/msg00095.html --- a/src/Makefile.am +++ b/src/Makefile.am @@ -34,7 +34,7 @@ endif # @GTK_LIBS@ & libdbus_CFLAGS are not used to avoid unwanted # libraries (like -latk, -lrt, etc.) passed to the linker -artha_LDADD = libwni.a $(WORDNET_LIB) +artha_LDADD = libwni.a $(WORDNET_LIB) @GTK_LIBS@ if POSIX AM_CFLAGS += @libdbus_CFLAGS@