[svn-commits] qwell: branch 1.6.1 r259355 - in /branches/1.6.1: ./ configure configure.ac

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Apr 27 14:35:24 CDT 2010


Author: qwell
Date: Tue Apr 27 14:35:20 2010
New Revision: 259355

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

................
  r259353 | qwell | 2010-04-27 14:31:55 -0500 (Tue, 27 Apr 2010) | 12 lines
  
  Merged revisions 259352 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r259352 | qwell | 2010-04-27 14:29:26 -0500 (Tue, 27 Apr 2010) | 5 lines
    
    Support the silly OSes that don't have ar and strip.
    
    Since AC_PATH_TOOL is equiv to AC_CHECK_TOOL when path isn't specified, and
    AC_PATH_TOOLS doesn't exist, we'll just switch to AC_CHECK_TOOLS.
  ........
................

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

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

Modified: branches/1.6.1/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/configure.ac?view=diff&rev=259355&r1=259354&r2=259355
==============================================================================
--- branches/1.6.1/configure.ac (original)
+++ branches/1.6.1/configure.ac Tue Apr 27 14:35:20 2010
@@ -162,8 +162,8 @@
 AC_PROG_RANLIB
 AST_CHECK_GNU_MAKE
 
-AC_PATH_TOOL([STRIP], [strip], :)
-AC_PATH_TOOL([AR], [ar], :)
+AC_CHECK_TOOLS([STRIP], [strip gstrip], :)
+AC_CHECK_TOOLS([AR], [ar gar], :)
 
 GNU_LD=0
 if test "x$with_gnu_ld" = "xyes" ; then




More information about the svn-commits mailing list