[svn-commits] qwell: trunk r259353 - in /trunk: ./ configure configure.ac

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


Author: qwell
Date: Tue Apr 27 14:31:55 2010
New Revision: 259353

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=259353
Log:
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:
    trunk/   (props changed)
    trunk/configure
    trunk/configure.ac

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/configure.ac
URL: http://svnview.digium.com/svn/asterisk/trunk/configure.ac?view=diff&rev=259353&r1=259352&r2=259353
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Tue Apr 27 14:31:55 2010
@@ -174,8 +174,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