http_main.c: In function `ap_unregister_other_child':
http_main.c:1447: incompatible type for argument 3 of indirect function call
http_main.c: In function `probe_writable_fds':
http_main.c:1503: incompatible type for argument 3 of indirect function call
http_main.c: In function `reclaim_child_processes':
http_main.c:2246: incompatible type for argument 3 of indirect function call
http_main.c:2249: incompatible type for argument 3 of indirect function call
http_main.c:2255: incompatible type for argument 3 of indirect function call
*** Exit 1
Stop.
*** Exit 1
Stop.
indirect call has prototype:
void (*maintenance) (int reason, void *, ap_wait_t status)
in Apache 1.26 argument 3 was
#ifndef ap_wait_t
#define ap_wait_t int
#endif
in Ver 1.31 it changed:
#define ap_wait_t union wait
and the Next 3.2 compiler (NeXT Computer, Inc. version cc-216.obj~13, gcc
version 2.2.2 ) does not like this definition. Nor will it compile if the
definition is returned to the V1.26 status:
http_main.c: In function `process_child_status':
http_main.c:4124: request for member `w_S' in something not a structure or
union
http_main.c:4124: request for member `w_T' in something not a structure or
union
http_main.c:4125: request for member `w_S' in something not a structure or
union
http_main.c:4125: request for member `w_T' in something not a structure or
union
http_main.c:4125: request for member `w_T' in something not a structure or
union
http_main.c:4132: request for member `w_S' in something not a structure or
union
http_main.c:4132: request for member `w_T' in something not a structure or
union
http_main.c:4133: request for member `w_T' in something not a structure or
union
http_main.c:4156: request for member `w_T' in something not a structure or
union
http_main.c:4156: request for member `w_T' in something not a structure or
union
Has anyone managed to resolve this?
thanx,mark