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

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

Author: ylavic
Date: Fri Sep  9 22:09:16 2016
New Revision: 1760113

URL: http://svn.apache.org/viewvc?rev=1760113&view=rev
Log:
Propose.

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=1760113&r1=1760112&r2=1760113&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/STATUS (original)
+++ httpd/httpd/branches/2.4.x/STATUS Fri Sep  9 22:09:16 2016
@@ -193,6 +193,26 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
                   http://home.apache.org/~ylavic/patches/httpd-2.4.x-r1750392.patch
      +1: ylavic
 
+  *) mod_proxy, mod_ssl: Handle SSLProxy* directives in <Proxy> sections,
+     allowing per backend TLS configuration.
+     trunk patch: http://svn.apache.org/r1740928
+                  http://svn.apache.org/r1740960
+                  http://svn.apache.org/r1740967
+                  http://svn.apache.org/r1740987
+                  http://svn.apache.org/r1740998
+                  http://svn.apache.org/r1742697
+                  http://svn.apache.org/r1756976
+     2.4.x patch: http://home.apache.org/~ylavic/patches/httpd-2.4.x-r1740928_and_co.patch
+     +1: ylavic
+
+  *) Fix warnings with new compilers, warnings treated as error
+     in maintainer-mode, standard c-89 is enforced
+     trunk patch: http://svn.apache.org/r1702948
+                  http://svn.apache.org/r1759415
+     2.4.x patch: http://home.apache.org/~ylavic/patches/httpd-2.4.x-r1702948_and_co.patch
+     +1: ylavic
+
+
 PATCHES/ISSUES THAT ARE BEING WORKED
 
   *) http: Don't remove the Content-Length of zero from a HEAD response if



Re: svn commit: r1760113 - /httpd/httpd/branches/2.4.x/STATUS

Posted by Jacob Champion <ch...@gmail.com>.
On 09/09/2016 03:09 PM, ylavic@apache.org wrote:
> +
> +  *) Fix warnings with new compilers, warnings treated as error
> +     in maintainer-mode, standard c-89 is enforced
> +     trunk patch: http://svn.apache.org/r1702948

This part of the patch has the following addition:

> Index: configure.in
> ===================================================================
> --- configure.in	(revision 1760112)
> +++ configure.in	(working copy)
> @@ -596,11 +596,12 @@ AC_ARG_ENABLE(maintainer-mode,APACHE_HELP_STRING(-
>      APR_ADDTO(CPPFLAGS, -DAP_DEBUG)
>      if test "$GCC" = "yes"; then
>        APR_ADDTO(CFLAGS,[-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -Wpointer-arith])
> +      APACHE_ADD_GCC_CFLAG([-std=c89])
> +      APACHE_ADD_GCC_CFLAG([-Werror])
>        APACHE_ADD_GCC_CFLAG([-Wdeclaration-after-statement])
> -      APACHE_ADD_GCC_CFLAG([-Werror=declaration-after-statement])
>        APACHE_ADD_GCC_CFLAG([-Wformat])
>        APACHE_ADD_GCC_CFLAG([-Wformat-security])
> -      APACHE_ADD_GCC_CFLAG([-Werror=format-security])
> +      APACHE_ADD_GCC_CFLAG([-Wunused])
>      elif test "$AIX_XLC" = "yes"; then
>        APR_ADDTO(CFLAGS,-qfullpath -qinitauto=FE -qcheck=all -qinfo=pro)
>      fi

On my machine, the -Werror flag is never added, because 
-Wstrict-prototypes complains about AC_LANG_PROGRAM's use of main() 
instead of main(void) and the compilation check fails.

(I tried moving the -Werror addition before the APR_ADDTO line that adds 
-Wstrict-prototypes, but predictably, this just moves the problem down 
the road, since other test programs fail later.)

--Jacob