From 12e8008e6d16eb5fc9805d43b97977443e34eb6d Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 1 Nov 2009 20:24:17 +0000 Subject: [PATCH] MFC r197163 Add the FBSD_1.2 namespace. Reminded by: kib --- lib/libc/Versions.def | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/libc/Versions.def b/lib/libc/Versions.def index a17e0a5376a..da0ca6f8063 100644 --- a/lib/libc/Versions.def +++ b/lib/libc/Versions.def @@ -1,5 +1,11 @@ # $FreeBSD$ +# +# Note: Whenever bumping the FBSD version, always make +# FBSDprivate_1.0 depend on the new FBSD version. +# This will keep it at the end of the dependency chain. +# + # This is our first version; it depends on no other. # This version was first added to 7.0-current. FBSD_1.0 { @@ -9,6 +15,10 @@ FBSD_1.0 { FBSD_1.1 { } FBSD_1.0; +# This version was first added to 9.0-current. +FBSD_1.2 { +} FBSD_1.1; + # This is our private namespace. Any global interfaces that are # strictly for use only by other FreeBSD applications and libraries # are listed here. We use a separate namespace so we can write @@ -16,4 +26,4 @@ FBSD_1.1 { # # Please do NOT increment the version of this namespace. FBSDprivate_1.0 { -} FBSD_1.1; +} FBSD_1.2;