You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2017/05/22 16:07:52 UTC

svn commit: r1795828 - in /apr/apr/branches/1.6.x: CHANGES configure.in

Author: wrowe
Date: Mon May 22 16:07:52 2017
New Revision: 1795828

URL: http://svn.apache.org/viewvc?rev=1795828&view=rev
Log:
Based on dev@apr poll on shipping experimental/not-ready
features, revert 'default-disabled' change from r1792560,
and build timedlocks where resolved as available by default.


Modified:
    apr/apr/branches/1.6.x/CHANGES
    apr/apr/branches/1.6.x/configure.in

Modified: apr/apr/branches/1.6.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/CHANGES?rev=1795828&r1=1795827&r2=1795828&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/CHANGES [utf-8] (original)
+++ apr/apr/branches/1.6.x/CHANGES [utf-8] Mon May 22 16:07:52 2017
@@ -1,9 +1,8 @@
                                                      -*- coding: utf-8 -*-
 Changes for APR 1.6.1
 
-  *) Locks: make timedlocks a configuration option, to avoid
-     advertising a capability that is not (yet) sufficiently
-     cross-platform. [Nick Kew]
+  *) Locks: add a --disable-timedlocks config option in case users
+     encounter more platforms where it fails [Nick Kew].
 
 Changes for APR 1.6.0
 

Modified: apr/apr/branches/1.6.x/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/configure.in?rev=1795828&r1=1795827&r2=1795828&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/configure.in (original)
+++ apr/apr/branches/1.6.x/configure.in Mon May 22 16:07:52 2017
@@ -2790,8 +2790,8 @@ AC_MSG_RESULT($ipv6_result)
 AC_SUBST(have_ipv6)
 
 AC_ARG_ENABLE(timedlocks,
-  [  --enable-timedlocks	  Enable experimental timed locks ],
-  [apr_has_timedlocks="1"], [apr_has_timedlocks="0"]
+  [  --disable-timedlocks	  Disable timed locks ],
+  [apr_has_timedlocks="0"], [apr_has_timedlocks="1"]
 )
 AC_SUBST(apr_has_timedlocks)