[Xfce4-commits] <tumbler:master> Link all plugins that use rint() against libm (-lm).

Jannis Pohlmann noreply at xfce.org
Fri Feb 24 17:38:01 CET 2012


Updating branch refs/heads/master
         to 88507955ba898d4a53241c5d542137ca35c02aac (commit)
       from 42f0d96dc78e5ef13d9d74aaf2e86bf6ee27efa4 (commit)

commit 88507955ba898d4a53241c5d542137ca35c02aac
Author: Jannis Pohlmann <jannis.pohlmann at codethink.co.uk>
Date:   Fri Feb 24 16:37:05 2012 +0000

    Link all plugins that use rint() against libm (-lm).

 plugins/ffmpeg-thumbnailer/Makefile.am  |    5 +++--
 plugins/font-thumbnailer/Makefile.am    |    5 +++--
 plugins/jpeg-thumbnailer/Makefile.am    |    5 +++--
 plugins/odf-thumbnailer/Makefile.am     |    4 +++-
 plugins/pixbuf-thumbnailer/Makefile.am  |    5 +++--
 plugins/poppler-thumbnailer/Makefile.am |    5 +++--
 plugins/raw-thumbnailer/Makefile.am     |    4 +++-
 7 files changed, 21 insertions(+), 12 deletions(-)

diff --git a/plugins/ffmpeg-thumbnailer/Makefile.am b/plugins/ffmpeg-thumbnailer/Makefile.am
index e3e5d6e..39f7ad6 100644
--- a/plugins/ffmpeg-thumbnailer/Makefile.am
+++ b/plugins/ffmpeg-thumbnailer/Makefile.am
@@ -1,6 +1,6 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
-# Copyright (c) 2009-2010 Jannis Pohlmann <jannis at xfce.org>
+# Copyright (c) 2009-2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +55,8 @@ tumbler_ffmpeg_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(FFMPEGTHUMBNAILER_LIBS)
+	$(FFMPEGTHUMBNAILER_LIBS)					\
+	-lm
 
 tumbler_ffmpeg_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/font-thumbnailer/Makefile.am b/plugins/font-thumbnailer/Makefile.am
index fda0c0d..d3318df 100644
--- a/plugins/font-thumbnailer/Makefile.am
+++ b/plugins/font-thumbnailer/Makefile.am
@@ -1,6 +1,6 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
-# Copyright (c) 2009-2010 Jannis Pohlmann <jannis at xfce.org>
+# Copyright (c) 2009-2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +55,8 @@ tumbler_font_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(FREETYPE_LIBS)
+	$(FREETYPE_LIBS)						\
+	-lm
 
 tumbler_font_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/jpeg-thumbnailer/Makefile.am b/plugins/jpeg-thumbnailer/Makefile.am
index 0606af2..93dee1f 100644
--- a/plugins/jpeg-thumbnailer/Makefile.am
+++ b/plugins/jpeg-thumbnailer/Makefile.am
@@ -1,6 +1,6 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
-# Copyright (c) 2009-2010 Jannis Pohlmann <jannis at xfce.org>
+# Copyright (c) 2009-2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +55,8 @@ tumbler_jpeg_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(LIBJPEG_LIBS)
+	$(LIBJPEG_LIBS)							\
+	-lm
 
 tumbler_jpeg_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/odf-thumbnailer/Makefile.am b/plugins/odf-thumbnailer/Makefile.am
index faf0a6e..8f11e0d 100644
--- a/plugins/odf-thumbnailer/Makefile.am
+++ b/plugins/odf-thumbnailer/Makefile.am
@@ -1,6 +1,7 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
 # Copyright (c) 2011 Nick Schermer <nick at xfce.org>
+# Copyright (c) 2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +56,8 @@ tumbler_odf_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(GSF_LIBS)
+	$(GSF_LIBS)							\
+	-lm
 
 tumbler_odf_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/pixbuf-thumbnailer/Makefile.am b/plugins/pixbuf-thumbnailer/Makefile.am
index 6c5c889..2852a46 100644
--- a/plugins/pixbuf-thumbnailer/Makefile.am
+++ b/plugins/pixbuf-thumbnailer/Makefile.am
@@ -1,6 +1,6 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
-# Copyright (c) 2009 Jannis Pohlmann <jannis at xfce.org>
+# Copyright (c) 2009-2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -53,7 +53,8 @@ tumbler_pixbuf_thumbnailer_la_LIBADD =					\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la	\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
-	$(GLIB_LIBS)
+	$(GLIB_LIBS)							\
+	-lm
 
 tumbler_pixbuf_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/poppler-thumbnailer/Makefile.am b/plugins/poppler-thumbnailer/Makefile.am
index e73fcfa..d1ae2bf 100644
--- a/plugins/poppler-thumbnailer/Makefile.am
+++ b/plugins/poppler-thumbnailer/Makefile.am
@@ -1,6 +1,6 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
-# Copyright (c) 2010 Jannis Pohlmann <jannis at xfce.org>
+# Copyright (c) 2010-2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +55,8 @@ tumbler_poppler_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(POPPLER_GLIB_LIBS)
+	$(POPPLER_GLIB_LIBS)						\
+	-lm
 
 tumbler_poppler_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
diff --git a/plugins/raw-thumbnailer/Makefile.am b/plugins/raw-thumbnailer/Makefile.am
index d817a7b..147158d 100644
--- a/plugins/raw-thumbnailer/Makefile.am
+++ b/plugins/raw-thumbnailer/Makefile.am
@@ -1,6 +1,7 @@
 # vi:set ts=8 sw=8 noet ai nocindent:
 # -
 # Copyright (c) 2011 Nick Schermer <nick at xfce.org>
+# Copyright (c) 2012 Jannis Pohlmann <jannis at xfce.org>
 # 
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -55,7 +56,8 @@ tumbler_raw_thumbnailer_la_LIBADD =					\
 	$(GDK_PIXBUF_LIBS)						\
 	$(GIO_LIBS)							\
 	$(GLIB_LIBS)							\
-	$(LIBOPENRAW_GNOME_LIBS)
+	$(LIBOPENRAW_GNOME_LIBS)					\
+	-lm
 
 tumbler_raw_thumbnailer_la_DEPENDENCIES =				\
 	$(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la


More information about the Xfce4-commits mailing list