diff options
author | 2012-12-19 06:30:28 +0000 | |
---|---|---|
committer | 2012-12-19 06:30:28 +0000 | |
commit | 1299929e8ac316c339d4705c73e5c167130cf830 (patch) | |
tree | 0ecdb9ab9191e0656bb2dfc4cfbbbcce9bf76569 /gnome-extra/evolution-ews/files | |
parent | Version bump for gnome-3.6. Drop old. (diff) | |
download | gentoo-2-1299929e8ac316c339d4705c73e5c167130cf830.tar.gz gentoo-2-1299929e8ac316c339d4705c73e5c167130cf830.tar.bz2 gentoo-2-1299929e8ac316c339d4705c73e5c167130cf830.zip |
Version bump for gnome-3.6. Drop old.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
Diffstat (limited to 'gnome-extra/evolution-ews/files')
-rw-r--r-- | gnome-extra/evolution-ews/files/evolution-ews-3.6.1-libm.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/gnome-extra/evolution-ews/files/evolution-ews-3.6.1-libm.patch b/gnome-extra/evolution-ews/files/evolution-ews-3.6.1-libm.patch new file mode 100644 index 000000000000..29b4977cd5e9 --- /dev/null +++ b/gnome-extra/evolution-ews/files/evolution-ews-3.6.1-libm.patch @@ -0,0 +1,52 @@ +From 616cc1e349f0cdb386b6e18e3eebf507d12d8b23 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev <tetromino@gentoo.org> +Date: Wed, 19 Dec 2012 01:19:25 -0500 +Subject: [PATCH] Bug #690474 - Explicitly link to libm + +--- + configure.ac | 3 +++ + src/addressbook/Makefile.am | 1 + + src/addressbook/lzx/Makefile.am | 1 + + 3 files changed, 5 insertions(+) + +diff --git a/configure.ac b/configure.ac +index f5e9cd5..f821438 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -71,6 +71,9 @@ AM_CONDITIONAL(OS_WIN32, [test "x$os_win32" = "xyes"]) + AC_SUBST(NO_UNDEFINED) + AC_SUBST(SOCKET_LIBS) + ++AC_CHECK_LIBM ++AC_SUBST(LIBM) ++ + dnl *********************** + dnl Compiler Warning Flags + dnl *********************** +diff --git a/src/addressbook/Makefile.am b/src/addressbook/Makefile.am +index 261fb5e..6ba6d83 100644 +--- a/src/addressbook/Makefile.am ++++ b/src/addressbook/Makefile.am +@@ -42,6 +42,7 @@ libebookbackendews_la_LIBADD = \ + $(EVOLUTION_ADDRESSBOOK_LIBS) \ + $(SQLITE3_LIBS) \ + $(SOUP_LIBS) \ ++ $(LIBM) \ + $(NULL) + + libebookbackendews_la_LDFLAGS = \ +diff --git a/src/addressbook/lzx/Makefile.am b/src/addressbook/lzx/Makefile.am +index d157e94..8b0871a 100644 +--- a/src/addressbook/lzx/Makefile.am ++++ b/src/addressbook/lzx/Makefile.am +@@ -20,6 +20,7 @@ liblzx_la_LDFLAGS = $(NO_UNDEFINED) + + liblzx_la_LIBADD = \ + $(GNOME_PLATFORM_LIBS) \ ++ $(LIBM) \ + $(NULL) + + -include $(top_srcdir)/git.mk +-- +1.8.0.2 + |