[svn-commits] kpfleming: trunk r887 - in /trunk: ./ acinclude.m4 aclocal.m4 configure

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Apr 27 14:49:48 CDT 2009


Author: kpfleming
Date: Mon Apr 27 14:49:45 2009
New Revision: 887

URL: http://svn.digium.com/svn-view/asterisk-addons?view=rev&rev=887
Log:
Merged revisions 886 via svnmerge from 
https://origsvn.digium.com/svn/asterisk-addons/branches/1.4

........
  r886 | kpfleming | 2009-04-27 14:48:31 -0500 (Mon, 27 Apr 2009) | 5 lines
  
  Incorporate autoconf 2.63 related fixes to configure script
  
  (see revision 190721 of the asterisk repository for more details)
........

Modified:
    trunk/   (props changed)
    trunk/acinclude.m4
    trunk/aclocal.m4
    trunk/configure   (contents, props changed)

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Mon Apr 27 14:49:45 2009
@@ -1,1 +1,1 @@
-/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574,578,606,714
+/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574,578,606,714,886

Modified: trunk/acinclude.m4
URL: http://svn.digium.com/svn-view/asterisk-addons/trunk/acinclude.m4?view=diff&rev=887&r1=886&r2=887
==============================================================================
--- trunk/acinclude.m4 (original)
+++ trunk/acinclude.m4 Mon Apr 27 14:49:45 2009
@@ -80,21 +80,23 @@
 fi
 ])
 
-
-AC_DEFUN(
-[AST_CHECK_GNU_MAKE], [AC_CACHE_CHECK(for GNU make, GNU_MAKE,
-   GNU_MAKE='Not Found' ;
+AC_DEFUN([AST_CHECK_GNU_MAKE], [AC_CACHE_CHECK([for GNU make], [ac_cv_GNU_MAKE],
+   ac_cv_GNU_MAKE='Not Found' ;
+   ac_cv_GNU_MAKE_VERSION_MAJOR=0 ;
+   ac_cv_GNU_MAKE_VERSION_MINOR=0 ;
    for a in make gmake gnumake ; do
       if test -z "$a" ; then continue ; fi ;
       if ( sh -c "$a --version" 2> /dev/null | grep GNU  2>&1 > /dev/null ) ;  then
-         GNU_MAKE=$a ;
+         ac_cv_GNU_MAKE=$a ;
+         ac_cv_GNU_MAKE_VERSION_MAJOR=`$ac_cv_GNU_MAKE --version | grep "GNU Make" | cut -f3 -d' ' | cut -f1 -d'.'`
+         ac_cv_GNU_MAKE_VERSION_MINOR=`$ac_cv_GNU_MAKE --version | grep "GNU Make" | cut -f2 -d'.' | cut -c1-2`
          break;
       fi
    done ;
 ) ;
-if test  "x$GNU_MAKE" = "xNot Found"  ; then
+if test  "x$ac_cv_GNU_MAKE" = "xNot Found"  ; then
    AC_MSG_ERROR( *** Please install GNU make.  It is required to build Asterisk!)
    exit 1
 fi
-AC_SUBST([GNU_MAKE])
+AC_SUBST([GNU_MAKE], [$ac_cv_GNU_MAKE])
 ])

Modified: trunk/aclocal.m4
URL: http://svn.digium.com/svn-view/asterisk-addons/trunk/aclocal.m4?view=diff&rev=887&r1=886&r2=887
==============================================================================
--- trunk/aclocal.m4 (original)
+++ trunk/aclocal.m4 Mon Apr 27 14:49:45 2009
@@ -1,4 +1,4 @@
-# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.10.2 -*- Autoconf -*-
 
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 # 2005, 2006, 2007, 2008  Free Software Foundation, Inc.

Propchange: trunk/configure
            ('svn:eol-style' removed)

Propchange: trunk/configure
            ('svn:keywords' removed)

Propchange: trunk/configure
------------------------------------------------------------------------------
--- svn:mime-type (original)
+++ svn:mime-type Mon Apr 27 14:49:45 2009
@@ -1,1 +1,1 @@
-text/plain
+application/octet-stream




More information about the svn-commits mailing list