You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2017/10/17 18:47:22 UTC

svn commit: r1812436 - /httpd/httpd/branches/2.4.x/STATUS

Author: jim
Date: Tue Oct 17 18:47:22 2017
New Revision: 1812436

URL: http://svn.apache.org/viewvc?rev=1812436&view=rev
Log:
promote

Modified:
    httpd/httpd/branches/2.4.x/STATUS

Modified: httpd/httpd/branches/2.4.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1812436&r1=1812435&r2=1812436&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/STATUS (original)
+++ httpd/httpd/branches/2.4.x/STATUS Tue Oct 17 18:47:22 2017
@@ -117,6 +117,21 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
+  *) configure.in: Fix maintainer mode with GCC/Clang.
+     Setting -Wstrict-prototypes in combination with -Werror leads to compiler
+     errors during configure checks (autoconf generates incomplete prototypes).
+     As suggested by Joe, add --maintainer/debugger-mode's CFLAGS in
+     NOTEST_CFLAGS to avoid interractions with autoconf's AC_LANG_PROGRAM.
+     APACHE_ADD_GCC_CFLAG now also forces -Wno-strict-prototypes for -Werror
+     to work despite AC_LANG_PROGRAM generating this warning by itself.
+     trunk patch: http://svn.apache.org/r1812263
+                  http://svn.apache.org/r1812301
+     2.4.x patch: svn merge -c 1812263,1812301 ^/httpd/httpd/trunk .
+     +1: ylavic, rjung, jim
+     ylavic: if the below mod_journald proposal gets accepted, it will
+             also need a backport of r1812339, otherwise maintainer
+             mode builds will fail due to -Werror.
+
 
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
@@ -193,21 +208,6 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
                   (merge without changes to motorz)
      +1: ylavic, jim
 
-  *) configure.in: Fix maintainer mode with GCC/Clang.
-     Setting -Wstrict-prototypes in combination with -Werror leads to compiler
-     errors during configure checks (autoconf generates incomplete prototypes).
-     As suggested by Joe, add --maintainer/debugger-mode's CFLAGS in
-     NOTEST_CFLAGS to avoid interractions with autoconf's AC_LANG_PROGRAM.
-     APACHE_ADD_GCC_CFLAG now also forces -Wno-strict-prototypes for -Werror
-     to work despite AC_LANG_PROGRAM generating this warning by itself.
-     trunk patch: http://svn.apache.org/r1812263
-                  http://svn.apache.org/r1812301
-     2.4.x patch: svn merge -c 1812263,1812301 ^/httpd/httpd/trunk .
-     +1: ylavic, rjung, jim
-     ylavic: if the below mod_journald proposal gets accepted, it will
-             also need a backport of r1812339, otherwise maintainer
-             mode builds will fail due to -Werror.
-
   *) mod_journald: Add new module mod_journald to log error logs into journald.
      trunk patch: http://svn.apache.org/r1610339
                   http://svn.apache.org/r1621806