[svn-commits] tilghman: branch 1.6.0 r163169 - in /branches/1.6.0: ./ configure configure.ac

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Dec 11 14:04:15 CST 2008


Author: tilghman
Date: Thu Dec 11 14:04:15 2008
New Revision: 163169

URL: http://svn.digium.com/view/asterisk?view=rev&rev=163169
Log:
Merged revisions 163168 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r163168 | tilghman | 2008-12-11 14:02:35 -0600 (Thu, 11 Dec 2008) | 5 lines
  
  Sometimes even Linux needs -lm to link libtonezone, such as when libtonezone
  is compiled statically.
  (closes issue #13887)
   Reported by: tzafrir
........

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

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/configure.ac
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/configure.ac?view=diff&rev=163169&r1=163168&r2=163169
==============================================================================
--- branches/1.6.0/configure.ac (original)
+++ branches/1.6.0/configure.ac Thu Dec 11 14:04:15 2008
@@ -1449,7 +1449,9 @@
 
 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
 
-if test "${host_os}" != "linux-gnu" ; then
+AC_CHECK_LIB([tonezone], [tone_zone_find_by_num], tonezone_does_not_need_lm=yes, tonezone_does_not_need_lm=no)
+
+if test "${tonezone_does_not_need_lm}" = "no" ; then
   tonezone_extra="-lm"
 fi
 




More information about the svn-commits mailing list