On Wed, Jan 20, 1999, [EMAIL PROTECTED] wrote:

> Full_Name: 
> Version: 2.1.7-1.3.4
> OS: AIX 4.2 / apache 1.3.4
> Submission from: felix.adpcl.com (194.98.137.100)
> 
> Error when compiling src/modules/ssl/mod_ssl.c
> "ssl_expr.h", line 103.51: 1506-046 (S) Syntax error.

Yes, that's because of a not-allowed trailing comma in this header file which
GCC doesn't complain about (so I never recognized it) but strict ANSI C don't
permits. It's already fixed for mod_ssl 2.1.8.  In the meantime you can apply
the following patch:

Index: ssl_expr.h
===================================================================
RCS file: /e/apache/SSL/REPOS/mod_ssl/pkg.apache/src/modules/ssl/ssl_expr.h,v
retrieving revision 1.8
diff -u -r1.8 ssl_expr.h
--- ssl_expr.h  1999/01/02 16:46:16     1.8
+++ ssl_expr.h  1999/01/20 14:11:36
@@ -100,7 +100,7 @@
     op_NOP, op_ListElement,
     op_True, op_False, op_Not, op_Or, op_And, op_Comp,
     op_EQ, op_NE, op_LT, op_LE, op_GT, op_GE, op_IN, op_REG, op_NRE,
-    op_Digit, op_String, op_Regex, op_Var, op_Func,
+    op_Digit, op_String, op_Regex, op_Var, op_Func
 } ssl_expr_node_op;
 
 typedef struct {

                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com

______________________________________________________________________
Apache Interface to SSLeay (mod_ssl)   www.engelschall.com/sw/mod_ssl/
Official Support Mailing List               [EMAIL PROTECTED]
Automated List Manager                       [EMAIL PROTECTED]

Reply via email to