You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by NormW <no...@gknw.net> on 2015/10/24 23:21:52 UTC

Latest httpd-trunk updates....

G/M from D/U,
Compiling httpd-trunk this morning after an svn update and note the 
followings...um....oops
> CC   server/protocol.c
> ### mwccnlm Compiler:
> #    File: server\protocol.c
> # --------------------------
> #    2007:              for (int i = 0; i < conf->protocols->nelts; ++i) {
> #   Error:                   ^^^
> #   expression syntax error
> #   Too many errors printed, aborting program
>
> User break, cancelled...
> D:/Projects/svn/httpd-trunk/build/NWGNUtail.inc:125: recipe for target 'obj_release/protocol.o' failed
> make: *** [obj_release/protocol.o] Error 2
> CC   server/provider.c
[snip,snip,snip...]
> CC   server/util_script.c
> ### mwccnlm Compiler:
> #    File: server\util_script.c
> # -----------------------------
> #     289:          if (conf->fully_qualify_redirect_url != AP_CORE_CONFIG_ON) {
> #   Error:                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
> #   'fully_qualify_redirect_url' is not a struct/union/class member
> #   Too many errors printed, aborting program

The protocol.c oops needs the int i predeclared before the for-loop, the 
util_script.c is a bit more obscure.

HTH,
Norm

Re: Latest httpd-trunk updates....

Posted by NormW <no...@gknw.net>.
On 25/10/2015 8:36 AM, Eric Covener wrote:
> On Sat, Oct 24, 2015 at 5:21 PM, NormW <no...@gknw.net> wrote:
>>> #     289:          if (conf->fully_qualify_redirect_url !=
>>> AP_CORE_CONFIG_ON) {
>
> Fixed now, didn't get rebuilt when I changed the name in the header.
>
As of this morning (Monday 8.35 AEST) see a clean build of httpd-trunk, 
includng nghttp2 1.4.0.

Norm


Re: Latest httpd-trunk updates....

Posted by Eric Covener <co...@gmail.com>.
On Sat, Oct 24, 2015 at 5:21 PM, NormW <no...@gknw.net> wrote:
>> #     289:          if (conf->fully_qualify_redirect_url !=
>> AP_CORE_CONFIG_ON) {

Fixed now, didn't get rebuilt when I changed the name in the header.