Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Nov 2009 20:24:17 +0000 (UTC)
From:      Alan Cox <alc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r198773 - in stable/8/lib/libc: . gen stdio stdtime string
Message-ID:  <200911012024.nA1KOHvi034442@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: alc
Date: Sun Nov  1 20:24:17 2009
New Revision: 198773
URL: http://svn.freebsd.org/changeset/base/198773

Log:
  MFC r197163
    Add the FBSD_1.2 namespace.
  
  Reminded by:	kib

Modified:
  stable/8/lib/libc/   (props changed)
  stable/8/lib/libc/Versions.def
  stable/8/lib/libc/gen/   (props changed)
  stable/8/lib/libc/stdio/asprintf.c   (props changed)
  stable/8/lib/libc/stdtime/   (props changed)
  stable/8/lib/libc/string/ffsll.c   (props changed)
  stable/8/lib/libc/string/flsll.c   (props changed)
  stable/8/lib/libc/string/wcpcpy.c   (props changed)
  stable/8/lib/libc/string/wcpncpy.c   (props changed)

Modified: stable/8/lib/libc/Versions.def
==============================================================================
--- stable/8/lib/libc/Versions.def	Sun Nov  1 19:22:07 2009	(r198772)
+++ stable/8/lib/libc/Versions.def	Sun Nov  1 20:24:17 2009	(r198773)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911012024.nA1KOHvi034442>