You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/03/09 20:07:56 UTC

svn commit: r1298982 - in /subversion/branches/revprop-cache: build/ac-macros/svn-macros.m4 configure.ac

Author: stefan2
Date: Fri Mar  9 19:07:56 2012
New Revision: 1298982

URL: http://svn.apache.org/viewvc?rev=1298982&view=rev
Log:
On the revprop-cache branch:

* build/ac-macros/svn-macros.m4
  (SVN_CHECK_FOR_ATOMIC_BUILTINS): use svn_* as variable prefix instead of ap_*
* configure.ac
  adapt

Suggested by: danielsh

Modified:
    subversion/branches/revprop-cache/build/ac-macros/svn-macros.m4
    subversion/branches/revprop-cache/configure.ac

Modified: subversion/branches/revprop-cache/build/ac-macros/svn-macros.m4
URL: http://svn.apache.org/viewvc/subversion/branches/revprop-cache/build/ac-macros/svn-macros.m4?rev=1298982&r1=1298981&r2=1298982&view=diff
==============================================================================
--- subversion/branches/revprop-cache/build/ac-macros/svn-macros.m4 (original)
+++ subversion/branches/revprop-cache/build/ac-macros/svn-macros.m4 Fri Mar  9 19:07:56 2012
@@ -205,7 +205,7 @@ AC_DEFUN([SVN_REMOVE_STANDARD_LIB_DIRS],
 
 AC_DEFUN([SVN_CHECK_FOR_ATOMIC_BUILTINS],
 [
-  AC_CACHE_CHECK([whether the compiler provides atomic builtins], [ap_cv_atomic_builtins],
+  AC_CACHE_CHECK([whether the compiler provides atomic builtins], [svn_cv_atomic_builtins],
   [AC_TRY_RUN([
   int main()
   {
@@ -241,5 +241,5 @@ AC_DEFUN([SVN_CHECK_FOR_ATOMIC_BUILTINS]
           return 1;
 
       return 0;
-  }], [ap_cv_atomic_builtins=yes], [ap_cv_atomic_builtins=no], [ap_cv_atomic_builtins=no])])
+  }], [svn_cv_atomic_builtins=yes], [svn_cv_atomic_builtins=no], [svn_cv_atomic_builtins=no])])
 ])

Modified: subversion/branches/revprop-cache/configure.ac
URL: http://svn.apache.org/viewvc/subversion/branches/revprop-cache/configure.ac?rev=1298982&r1=1298981&r2=1298982&view=diff
==============================================================================
--- subversion/branches/revprop-cache/configure.ac (original)
+++ subversion/branches/revprop-cache/configure.ac Fri Mar  9 19:07:56 2012
@@ -186,7 +186,7 @@ fi
 
 SVN_CHECK_FOR_ATOMIC_BUILTINS
 
-if test "$ap_cv_atomic_builtins" = "yes"; then
+if test "$svn_cv_atomic_builtins" = "yes"; then
     AC_DEFINE(SVN_HAS_ATOMIC_BUILTINS, 1, [Define if compiler provides atomic builtins])
 fi