pidgin.2.x.y: 55e87115: *** Plucked rev 1270f4e5ab858ed24cdaf179...
markdoliner at pidgin.im
markdoliner at pidgin.im
Mon Feb 13 12:47:22 EST 2012
----------------------------------------------------------------------
Revision: 55e8711512be87f2d917ee78e0659ca9d27b8377
Parent: 88da6e4911fa5d201d726aebc2d72c67b4e40abb
Author: markdoliner at pidgin.im
Date: 02/12/12 22:57:10
Branch: im.pidgin.pidgin.2.x.y
URL: http://d.pidgin.im/viewmtn/revision/info/55e8711512be87f2d917ee78e0659ca9d27b8377
Changelog:
*** Plucked rev 1270f4e5ab858ed24cdaf179e71fedea82ea9e09 (qulogic at pidgin.im):
Check for libm. I think I read somewhere that GDK pixbuf dropped
its dependency on it, which is probably why this is showing up now.
Closes #14799.
Changes against parent 88da6e4911fa5d201d726aebc2d72c67b4e40abb
patched ChangeLog
patched configure.ac
-------------- next part --------------
============================================================
--- ChangeLog 9fe0a518a8ceaa971f71955b71e24a27fd950fcc
+++ ChangeLog f192aec30ec7447e0b9c252cc84b69b6d026f51f
@@ -1,6 +1,9 @@ version 2.10.2 (02/22/2012):
Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
version 2.10.2 (02/22/2012):
+ General:
+ * Fix compilation when using binutils 2.22 and new GDK pixbuf. (#14799)
+
AIM and ICQ:
* Allow signing on with usernames containing periods and
underscores. (#13500)
============================================================
--- configure.ac eb41de95f6308a26e1f78d1deb4c304f2be3579e
+++ configure.ac 981f753cd3c0c16ec39f77783ac8e9dc946c4d33
@@ -202,6 +202,12 @@ AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHEC
dnl FreeBSD doesn't have libdl, dlopen is provided by libc
AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])
+dnl Haiku does not use libm for the math functions, they are part
+dnl of the C library
+AC_SEARCH_LIBS([ceil], [m], [], [
+ AC_MSG_ERROR([unable to find the floor() function])
+])
+
AC_MSG_CHECKING(for fileno())
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#include <stdio.h>
More information about the Commits
mailing list