Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 85034 invoked from network); 6 Nov 2010 21:37:16 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Nov 2010 21:37:16 -0000 Received: (qmail 47132 invoked by uid 500); 6 Nov 2010 21:37:46 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 47075 invoked by uid 500); 6 Nov 2010 21:37:46 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 47067 invoked by uid 99); 6 Nov 2010 21:37:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Nov 2010 21:37:46 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [194.242.35.75] (HELO dns-factory.at) (194.242.35.75) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Nov 2010 21:37:39 +0000 Received: from [10.202.65.180] normw@gknw.net [124.183.152.230] by dns-factory.at with NetMail SMTP Agent $Revision: 8582 $ on Novell NetWare via secured & encrypted transport (TLS); Sat, 06 Nov 2010 22:37:07 +0100 Message-ID: <4CD5CA71.7010406@gknw.net> Date: Sun, 07 Nov 2010 08:36:49 +1100 From: NormW User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.11) Gecko/20101013 Thunderbird/3.1.5 MIME-Version: 1.0 To: "dev@httpd.apache.org" Subject: svn commit r1032073 - NetWare build 'problems' Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, See a needed tweak similar to the following for the root build file: > --- NWGNUmakefile.orig 2010-10-25 05:36:20.812500000 +1000 > +++ NWGNUmakefile 2010-11-07 07:49:57.234375000 +1100 > @@ -71,6 +71,7 @@ > $(STDMOD)/mappers \ > $(STDMOD)/proxy \ > $(STDMOD)/ssl \ > + $(AP_WORK)/server \ > $(AP_WORK)/server/mpm/netware \ > $(PCRE) \ > $(NWOS) \ > @@ -269,7 +270,9 @@ > $(OBJDIR)/util_charset.o \ > $(OBJDIR)/util_cookies.o \ > $(OBJDIR)/util_debug.o \ > - $(OBJDIR)/util_expr.o \ > + $(OBJDIR)/util_expr_eval.o \ > + $(OBJDIR)/util_expr_parse.o \ > + $(OBJDIR)/util_expr_scan.o \ > $(OBJDIR)/util_filter.o \ > $(OBJDIR)/util_md5.o \ > $(OBJDIR)/util_mutex.o \ Also 'needed' is the following minor reshuffle in util_expr_eval.c: > --- server\util_expr_eval.c.orig 2010-11-07 06:55:22.765625000 +1100 > +++ server\util_expr_eval.c 2010-11-07 07:58:10.609375000 +1100 > @@ -884,8 +884,8 @@ > static const char *misc_var_fn(ap_expr_eval_ctx *ctx, const void *data) > { > apr_time_exp_t tm; > - apr_time_exp_lt(&tm, apr_time_now()); > int index = ((const char **)data - misc_var_names); > + apr_time_exp_lt(&tm, apr_time_now()); > > switch (index) { > case 0: And, see the following, but not yet solved: > Compiling server/util_expr_eval.c > ### mwccnlm Compiler: > # File: server\util_expr_eval.c > # -------------------------------- > # 86: ap_expr_string_func_t *func = info->node_arg1; > # Error: ^ > # illegal implicit conversion from 'const void *const ' to > # 'char * (*)(struct *, const void *, const char *)' > ### mwccnlm Compiler: > # 189: ap_expr_list_func_t *func = info->node_arg1; > # Error: ^ > # illegal implicit conversion from 'const void *const ' to > # 'struct apr_array_header_t * (*)(struct *, const void *, const char *)' > > Compiling server/util_expr_scan.c > ### mwccnlm Compiler: > # File: server\util_expr_scan.c > # -------------------------------- > # 1141: char c[2] = { yytext[0], '\0' }; > # Error: ^ > # illegal constant expression > ### mwccnlm Compiler: > # 1446: char c[2] = { yytext[0], '\0' }; > # Error: ^ > # illegal constant expression > Norm