[asterisk-commits] tilghman: trunk r294431 - in /trunk: ./ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 9 14:35:20 CST 2010
Author: tilghman
Date: Tue Nov 9 14:35:05 2010
New Revision: 294431
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=294431
Log:
Merged revisions 294430 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
................
r294430 | tilghman | 2010-11-09 14:33:05 -0600 (Tue, 09 Nov 2010) | 15 lines
Merged revisions 294429 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2
........
r294429 | tilghman | 2010-11-09 14:27:23 -0600 (Tue, 09 Nov 2010) | 8 lines
Detect GMime properly on systems where gmime flags and libs are configured with pkg-config.
(closes issue #16155)
Reported by: jcollie
Patches:
20100917__issue16155.diff.txt uploaded by tilghman (license 14)
Tested by: tilghman
........
................
Modified:
trunk/ (props changed)
trunk/configure
trunk/configure.ac
trunk/include/asterisk/autoconfig.h.in
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/configure.ac
URL: http://svnview.digium.com/svn/asterisk/trunk/configure.ac?view=diff&rev=294431&r1=294430&r2=294431
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Tue Nov 9 14:35:05 2010
@@ -1007,6 +1007,9 @@
AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
fi ; fi ; fi
+# PKGCONFIG is used in later tests
+AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
+
# do the package library checks now
@@ -1971,6 +1974,21 @@
fi
AST_EXT_TOOL_CHECK([GMIME], [gmime-config], [], [], [#include <gmime/gmime.h>], [gboolean q = g_mime_check_version(0,0,0);])
+if test "x${PBX_GMIME}" = "x0"; then
+ # Later versions of GMime use pkg-config
+ if test "x${PKGCONFIG}" = xNo; then :; else
+ GMIME_INCLUDE=$(${PKGCONFIG} gmime-2.0 --cflags 2>/dev/null)
+ GMIME_LIB=$(${PKGCONFIG} gmime-2.0 --libs)
+ if test "x${GMIME_INCLUDE}${GMIME_LIB}" = "x"; then
+ GMIME_INCLUDE=$(${PKGCONFIG} gmime-2.2 --cflags 2>/dev/null)
+ GMIME_LIB=$(${PKGCONFIG} gmime-2.2 --libs)
+ fi
+ if test "x${GMIME_INCLUDE}${GMIME_LIB}" != "x"; then
+ PBX_GMIME=1
+ AC_DEFINE([HAVE_GMIME], 1, [Define if your system has the GMIME libraries.])
+ fi
+ fi
+fi
AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
@@ -2111,7 +2129,6 @@
AC_SUBST(PBX_LAUNCHD)
PBX_GTK2=0
-AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
if test ! "x${PKGCONFIG}" = xNo; then
GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
Modified: trunk/include/asterisk/autoconfig.h.in
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/autoconfig.h.in?view=diff&rev=294431&r1=294430&r2=294431
==============================================================================
--- trunk/include/asterisk/autoconfig.h.in (original)
+++ trunk/include/asterisk/autoconfig.h.in Tue Nov 9 14:35:05 2010
@@ -813,7 +813,7 @@
/* Define to 1 if you have the `strtoq' function. */
#undef HAVE_STRTOQ
-/* Define to 1 if `st_blksize' is member of `struct stat'. */
+/* Define to 1 if `st_blksize' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
/* Define to 1 if you have the mISDN Supplemental Services library. */
@@ -1087,6 +1087,9 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
+
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
More information about the asterisk-commits
mailing list