Re: 3.0.5 beta

[email protected] (Rasmus Lerdorf) Sun, 04 Oct 1998 12:34:30 -0400 (Eastern Daylight Time)
Newsgroups php.beta
Message-ID <[email protected]>
> I think we should fix this.  Apache went to the trouble of renaming all
> internal functions to ap_*.  We are remapping them back to the non ap_*
> names with ap_compat.h in order to be compatible with Apache 1.2.x.  We
> can make a special case out of palloc and do a MODULE_MAGIC_NUMBER check
> and call ap_palloc() if the version of Apache is recent enough.  That will
> get rid of that warning for all Apache 1.3.x systems at least.

Ah, I guess this won't work actually.  Simply by including ap_compat.h we
are going to get that warning.  We'd have to wrap all our Apache function
in MMN checks and not include ap_compat.h for Apache-1.3.x.  That's a
bigger job than what we have time for right now.

-Rasmus