commit 3ad8efc3ba0bf84aaa977b161c03cfd5cef82a0a
Author: Todd Zullinger <[email protected]>
Date: Sun Feb 14 17:41:05 2010 -0500
Explicitly link against libm
Changes in the default DSO linking behavior on Fedora exposed the fact
that gtkpod used symbols from libm but had relied on libgpod or other
libraries it linked against to pull it in.
src/Makefile.am | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 6823f7c..00b4aca 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -57,10 +57,10 @@ gtkpod_SOURCES = \
prefsdlg.c \
infodlg.c \
infodlg.h \
- rb_rating_helper.c rb_rating_helper.h \
- rb_cell_renderer_rating.c rb_cell_renderer_rating.h
+ rb_rating_helper.c rb_rating_helper.h \
+ rb_cell_renderer_rating.c rb_cell_renderer_rating.h
-gtkpod_LDADD = $(LIBS) $(INTLLIBS) @LIBOBJS@
+gtkpod_LDADD = $(LIBS) -lm $(INTLLIBS) @LIBOBJS@
EXTRA_DIST = getopt.h
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2