From b40e2b6d14ab4cea45a6b2b430095099edb5bf75 Mon Sep 17 00:00:00 2001 From: "Andrey V. Elsukov" Date: Tue, 9 Jul 2013 10:20:27 +0000 Subject: [PATCH] Bump __FreeBSD_version to reflect changes in statistics structures. --- UPDATING | 5 +++++ sys/sys/param.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/UPDATING b/UPDATING index 9ecc065c741..b080c4707b8 100644 --- a/UPDATING +++ b/UPDATING @@ -31,6 +31,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10.x IS SLOW: disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130709: + Most of network statistics structures were changed to be able + keep 64-bits counters. Thus all tools, that work with networking + statistics, must be rebuilded (netstat(1), bsnmpd(1), etc.) + 20130629: Fix targets that run multiple make's to use && rather than ; so that subsequent steps depend on success of previous. diff --git a/sys/sys/param.h b/sys/sys/param.h index b33049e3eb4..47e06860360 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 1000036 /* Master, propagated to newvers */ +#define __FreeBSD_version 1000037 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,