[svn-commits] seanbright: branch 1.0 r678 - /branches/1.0/
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Dec 23 10:46:10 CST 2009
Author: seanbright
Date: Wed Dec 23 10:46:08 2009
New Revision: 678
URL: http://svnview.digium.com/svn/menuselect?view=rev&rev=678
Log:
Bring in changes to AST_CHECK_GNU_MAKE like those made in the asterisk repos.
Modified:
branches/1.0/acinclude.m4
branches/1.0/aclocal.m4
branches/1.0/autoconfig.h.in
branches/1.0/configure
Modified: branches/1.0/acinclude.m4
URL: http://svnview.digium.com/svn/menuselect/branches/1.0/acinclude.m4?view=diff&rev=678&r1=677&r2=678
==============================================================================
--- branches/1.0/acinclude.m4 (original)
+++ branches/1.0/acinclude.m4 Wed Dec 23 10:46:08 2009
@@ -95,25 +95,25 @@
AC_DEFUN(
-[AST_CHECK_GNU_MAKE], [AC_CACHE_CHECK(for GNU make, GNU_MAKE,
- GNU_MAKE='Not Found' ;
- GNU_MAKE_VERSION_MAJOR=0 ;
- GNU_MAKE_VERSION_MINOR=0 ;
+[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 ;
- GNU_MAKE_VERSION_MAJOR=`$GNU_MAKE --version | grep "GNU Make" | cut -f3 -d' ' | cut -f1 -d'.'`
- GNU_MAKE_VERSION_MINOR=`$GNU_MAKE --version | grep "GNU Make" | cut -f2 -d'.' | cut -c1-2`
+ 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])
])
# AST_FUNC_FORK
Modified: branches/1.0/aclocal.m4
URL: http://svnview.digium.com/svn/menuselect/branches/1.0/aclocal.m4?view=diff&rev=678&r1=677&r2=678
==============================================================================
--- branches/1.0/aclocal.m4 (original)
+++ branches/1.0/aclocal.m4 Wed Dec 23 10:46:08 2009
@@ -1,7 +1,7 @@
-# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
+# generated automatically by aclocal 1.11 -*- Autoconf -*-
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005 Free Software Foundation, Inc.
+# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
Modified: branches/1.0/autoconfig.h.in
URL: http://svnview.digium.com/svn/menuselect/branches/1.0/autoconfig.h.in?view=diff&rev=678&r1=677&r2=678
==============================================================================
--- branches/1.0/autoconfig.h.in (original)
+++ branches/1.0/autoconfig.h.in Wed Dec 23 10:46:08 2009
@@ -86,6 +86,9 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
/* Define to the version of this package. */
#undef PACKAGE_VERSION
More information about the svn-commits
mailing list