[svn-commits] qwell: branch 1.4 r259352 - in /branches/1.4: configure configure.ac

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


Author: qwell
Date: Tue Apr 27 14:29:26 2010
New Revision: 259352

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=259352
Log:
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.4/configure
    branches/1.4/configure.ac

Modified: branches/1.4/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/configure.ac?view=diff&rev=259352&r1=259351&r2=259352
==============================================================================
--- branches/1.4/configure.ac (original)
+++ branches/1.4/configure.ac Tue Apr 27 14:29:26 2010
@@ -132,8 +132,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