fielding 97/07/19 12:42:19
Modified: src CHANGES httpd.h
Log:
Introduced APACHE_RELEASE numeric symbol, since branching a release
makes a date meaningless for feature comparisons. The format is
jnnffbb (j = major number, nn = minor, ff = bugfix, bb = beta)
Note that 1.2b11 would have been 1020011 and 1.2.0 would be 1020012,
since the beta sequence numbers are actually X.X.0 releases.
Revision Changes Path
1.351 +8 -0 apache/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.350
retrieving revision 1.351
diff -C3 -r1.350 -r1.351
*** CHANGES 1997/07/19 10:20:50 1.350
--- CHANGES 1997/07/19 19:42:17 1.351
***************
*** 175,180 ****
--- 175,188 ----
*) PORT: Added Windows NT support
[Ben Laurie and Ambarish Malpani <[EMAIL PROTECTED]>]
+ Changes with Apache 1.2.2
+
+ *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache
+ release version number, such that it always increases along the
+ same lines as our source code branching. [Roy Fielding]
+
+ *) Minor oversight on multiple variants fixed. [Paul Sutton] PR#94
+
Changes with Apache 1.2.1
*) SECURITY: Don't serve file system objects unless they are plain files,
1.129 +5 -0 apache/src/httpd.h
Index: httpd.h
===================================================================
RCS file: /export/home/cvs/apache/src/httpd.h,v
retrieving revision 1.128
retrieving revision 1.129
diff -C3 -r1.128 -r1.129
*** httpd.h 1997/07/17 19:44:49 1.128
--- httpd.h 1997/07/19 19:42:18 1.129
***************
*** 295,300 ****
--- 295,305 ----
#define SERVER_VERSION SERVER_BASEVERSION
#endif
+ /* Numeric release version identifier: major minor bugfix betaseq
+ * Always increases along the same track as the source branch.
+ */
+ #define APACHE_RELEASE 1030000
+
#define SERVER_PROTOCOL "HTTP/1.1"
#define SERVER_SUPPORT "http://www.apache.org/"