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 2022/03/09 18:19:36 UTC

svn commit: r1898799 - in /apr/apr/branches/1.7.x: STATUS include/apr.hw

Author: wrowe
Date: Wed Mar  9 18:19:36 2022
New Revision: 1898799

URL: http://svn.apache.org/viewvc?rev=1898799&view=rev
Log:
Fix apr.hw input file, tcp_nopush absent on Windows

Submitted by: ylavic

Modified:
    apr/apr/branches/1.7.x/STATUS
    apr/apr/branches/1.7.x/include/apr.hw

Modified: apr/apr/branches/1.7.x/STATUS
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.7.x/STATUS?rev=1898799&r1=1898798&r2=1898799&view=diff
==============================================================================
--- apr/apr/branches/1.7.x/STATUS [utf-8] (original)
+++ apr/apr/branches/1.7.x/STATUS [utf-8] Wed Mar  9 18:19:36 2022
@@ -95,11 +95,6 @@ RELEASE SHOWSTOPPERS:
 
 CURRENT VOTES:
 
-    * Fix trivial 'configure apr.h.in' copy/paste error inside apr.hw
-		-#define APR_TCP_NOPUSH_FLAG       @apr_tcp_nopush_flag@
-		+#define APR_TCP_NOPUSH_FLAG       0
-      +1: ylavic, wrowe
-      [Confirmed against ws2tcpip.h, doesn't exist]
 
 CURRENT test/testall -v EXCEPTIONS:
 

Modified: apr/apr/branches/1.7.x/include/apr.hw
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.7.x/include/apr.hw?rev=1898799&r1=1898798&r2=1898799&view=diff
==============================================================================
--- apr/apr/branches/1.7.x/include/apr.hw (original)
+++ apr/apr/branches/1.7.x/include/apr.hw Wed Mar  9 18:19:36 2022
@@ -367,7 +367,7 @@ extern "C" {
 /* If we have a TCP implementation that can be "corked", what flag
  * do we use?
  */
-#define APR_TCP_NOPUSH_FLAG       @apr_tcp_nopush_flag@
+#define APR_TCP_NOPUSH_FLAG       0
 
 /* Is the TCP_NODELAY socket option inherited from listening sockets?
  */