You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "Roy T. Fielding" <fi...@kiwi.ics.uci.edu> on 1998/08/13 00:32:21 UTC

Re: [PATCH] friendlier MODULE_MAGIC_NUMBER checks

Putting the mmn.txt inside the source code is the right thing to do.
I too would prefer that it be in a separate header file with the
define that http_config.h would include, since the present one is
too chock full of unrelated stuff.  Actually, I'd prefer it if both
the MMN and release version (now in httpd.h) were moved to an
ap_version.h file.

However, I'm not keen on splitting the magic number.  It seems like
a good idea in general, but it is the kind of thing I'd only expect
in a major point release.  In other words, I'd rather just consider
the frequent binary incompatibilities a "known problem" for 1.3.x
and solve it in 2.0.  I wouldn't veto it, but that's my feeling.

....Roy

Re: [PATCH] friendlier MODULE_MAGIC_NUMBER checks

Posted by Rasmus Lerdorf <ra...@lerdorf.on.ca>.
> However, I'm not keen on splitting the magic number.  It seems like
> a good idea in general, but it is the kind of thing I'd only expect
> in a major point release.  In other words, I'd rather just consider
> the frequent binary incompatibilities a "known problem" for 1.3.x
> and solve it in 2.0.  I wouldn't veto it, but that's my feeling.

Yeah, checking the MMN to figure out how to interpret the MMN seems like a
bit of a mess.

-Rasmus