GNOME Bugzilla – Bug 658210
fails to build with ld --no-copy-dt-needed
Last modified: 2018-07-01 09:02:10 UTC
libfspot uses symbols from libm but does not explicitly link against it. This causes a build failure when indirect linking is reduced by ld --no-copy-dt-needed. See the debian bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640436 This patch fixes this issue: diff --git a/lib/libfspot/Makefile.am b/lib/libfspot/Makefile.am index a002d13..c372ab0 100644 --- a/lib/libfspot/Makefile.am +++ b/lib/libfspot/Makefile.am @@ -24,6 +24,7 @@ libfspot_la_SOURCES = \ libfspot_la_LIBADD = \ -lX11 \ + -lm \ $(F_LIBS) \ $(LCMS_LIBS) \ $(GIO_LIBS)
f-spot is not under active development anymore, has not seen code changes for five years, and saw its last tarball release in the year 2010. Its codebase has been archived: https://gitlab.gnome.org/Archive/f-spot/commits/master Closing this report as WONTFIX as part of Bugzilla Housekeeping to reflect reality. Please feel free to reopen this ticket (or rather transfer the project to GNOME Gitlab, as GNOME Bugzilla is deprecated) if anyone takes the responsibility for active development again.