After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 658210 - fails to build with ld --no-copy-dt-needed
fails to build with ld --no-copy-dt-needed
Status: RESOLVED WONTFIX
Product: f-spot
Classification: Other
Component: General
0.8.2
Other Linux
: Normal normal
: ---
Assigned To: F-spot maintainers
F-spot maintainers
gnome[unmaintained]
Depends on:
Blocks:
 
 
Reported: 2011-09-05 01:05 UTC by Julian Taylor
Modified: 2018-07-01 09:02 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Julian Taylor 2011-09-05 01:05:13 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)
Comment 1 André Klapper 2018-07-01 09:02:10 UTC
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.