Index: sys/sys/param.h =================================================================== --- sys/sys/param.h +++ sys/sys/param.h @@ -58,9 +58,16 @@ * 'R' is in the range 0 to 4 if this is a release branch or * X.0-CURRENT before releng/X.0 is created, otherwise 'R' is * in the range 5 to 9. + * Short hand: MMmmXXX + * + * __FreeBSD_version is bumped every time there's a change in the base system + * that's note worthy. A note worthy change is any change which changes the + * kernels KBI in -current, one that changes some detail about the system that + * external software (or the ports system) would want to know about, one that + * adds a system call, or one that adds or deletes a shipped library. */ #undef __FreeBSD_version -#define __FreeBSD_version 1400008 /* Master, propagated to newvers */ +#define __FreeBSD_version 1400008 /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,