- Switch -current to M.99.p as posted in tech-kern.

- Update comments to reflect reality.
- Welcome to 2.99.9!
This commit is contained in:
christos 2004-10-01 04:02:10 +00:00
parent b4a9b4deed
commit 65c70a171c

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.200 2004/09/18 16:37:12 yamt Exp $ */
/* $NetBSD: param.h,v 1.201 2004/10/01 04:02:10 christos Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -50,21 +50,23 @@
* #define __NetBSD_Version__ MMmmrrpp00
*
* M = major version
* m = minor version
* r = release ["",A-Z,Z[A-Z] but numeric]
* m = minor version; a minor number of 99 indicates current.
* r = 0 (*)
* p = patchlevel
*
* So:
* NetBSD-1.2D = 102040000
* And:
* NetBSD-1.2.1 = 102000100
*
*
* When new releases are made, src/gnu/usr.bin/groff/tmac/mdoc.local
* needs to be updated and the changes sent back to the groff maintainers.
*
* (*) Up to 2.0I "release" used to be ["",A-Z,Z[A-Z] but numeric
* e.g. NetBSD-1.2D = 102040000 ('D' == 4)
* NetBSD-2.0H (200080000) was changed on 20041001 to:
* 2.99.9 (299000900)
*/
#define __NetBSD_Version__ 200080000 /* NetBSD 2.0H */
#define __NetBSD_Version__ 299000900 /* NetBSD 2.99.9 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) >= __NetBSD_Version__)
/*
* Historical NetBSD #define