[asterisk-commits] jrose: branch 10 r360489 - in /branches/10: ./ configure.ac

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Mar 26 14:43:38 CDT 2012


Author: jrose
Date: Mon Mar 26 14:43:34 2012
New Revision: 360489

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=360489
Log:
Fix BETTER_BACKTRACES library detection for Fedora/RedHat/CentOS

(closes ASTERISK-17842)
Reported by: Bryon Clark
Patches:
	20110512__issue19278.diff.txt uploaded by Tilghman Lesher (license 5003)
	configure_bfd_with_dl_and_iberty.patch uploaded by Bryon Clark (license 6157)
........

Merged revisions 360488 from http://svn.asterisk.org/svn/asterisk/branches/1.8

Modified:
    branches/10/   (props changed)
    branches/10/configure.ac

Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/10/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/10/configure.ac?view=diff&rev=360489&r1=360488&r2=360489
==============================================================================
--- branches/10/configure.ac (original)
+++ branches/10/configure.ac Mon Mar 26 14:43:34 2012
@@ -1129,6 +1129,11 @@
 
 AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_openr], [bfd.h])
 
+if test "${PBX_BFD}" = "0"; then
+  # Fedora/RedHat/CentOS require extra libraries
+  AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_check_format], [bfd.h], [-ldl -liberty])
+fi
+
 if test "x${OSARCH}" = "xlinux-gnu" ; then
   AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
 fi




More information about the asterisk-commits mailing list