diff options
author | Frederic Peters <fpeters@0d.be> | 2011-08-31 09:24:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-08-31 09:24:21 +0800 |
commit | bd719c5fd879e96450d81339ff85f525a1ad8a13 (patch) | |
tree | 1f2e9719c75b2dc3282e42443365e31973d67145 /libgnomecanvas | |
parent | f67a5f3d42aa9d743e6b78ace26a6ed1dbdc43e7 (diff) | |
download | gsoc2013-evolution-bd719c5fd879e96450d81339ff85f525a1ad8a13.tar.gz gsoc2013-evolution-bd719c5fd879e96450d81339ff85f525a1ad8a13.tar.zst gsoc2013-evolution-bd719c5fd879e96450d81339ff85f525a1ad8a13.zip |
Bug 657765 - Explicitly link libgnomecanvas against libm
We used to implicitly link to libm through gtk+, but that got dropped.
http://mail.gnome.org/archives/desktop-devel-list/2011-August/msg00236.html
Diffstat (limited to 'libgnomecanvas')
-rw-r--r-- | libgnomecanvas/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgnomecanvas/Makefile.am b/libgnomecanvas/Makefile.am index 4032c8599a..bb6366b9ab 100644 --- a/libgnomecanvas/Makefile.am +++ b/libgnomecanvas/Makefile.am @@ -59,7 +59,8 @@ MARSHAL_GENERATED = \ gnome-canvas-marshal.h libgnomecanvas_la_LIBADD = \ - $(GNOME_PLATFORM_LIBS) + $(GNOME_PLATFORM_LIBS) \ + $(MATH_LIB) libgnomecanvas_la_LDFLAGS = $(NO_UNDEFINED) |