You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by ra...@madhaus.utcs.utoronto.ca on 1996/04/25 14:52:46 UTC

API version #define

Would it be possible to add a #define to httpd.h before version 1.1 officially
goes out the door?  Something like:

#define APACHE_NEWAPI 1

That change in the API is a hassle.  I have written my module to the 1.1 API
and would like to be able to add a simple macro like:

#if APACHE_NEWAPI
	#define PUTS(a) rputs((a),php_rqst)
#else
	#define PUTS(a) rprintf(php_rqst,"%s",(a))
#endif

I'll just have to avoid using rvputs()

-Rasmus