From owner-svn-src-stable-7@FreeBSD.ORG Mon Jan 4 17:29:00 2010 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51FF01065670; Mon, 4 Jan 2010 17:29:00 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3F52C8FC1B; Mon, 4 Jan 2010 17:29:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o04HT0AR030592; Mon, 4 Jan 2010 17:29:00 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o04HT0wr030590; Mon, 4 Jan 2010 17:29:00 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <201001041729.o04HT0wr030590@svn.freebsd.org> From: Alan Cox Date: Mon, 4 Jan 2010 17:29:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201519 - stable/7/lib/libc X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 17:29:00 -0000 Author: alc Date: Mon Jan 4 17:28:59 2010 New Revision: 201519 URL: http://svn.freebsd.org/changeset/base/201519 Log: MFC r197163 Add the FBSD_1.2 namespace. Discussed with: deischen Modified: stable/7/lib/libc/Versions.def Directory Properties: stable/7/lib/libc/ (props changed) stable/7/lib/libc/stdtime/ (props changed) Modified: stable/7/lib/libc/Versions.def ============================================================================== --- stable/7/lib/libc/Versions.def Mon Jan 4 17:05:16 2010 (r201518) +++ stable/7/lib/libc/Versions.def Mon Jan 4 17:28:59 2010 (r201519) @@ -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 { @@ -10,9 +16,13 @@ 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 # simple ABI-checking tools. FBSDprivate_1.0 { -} FBSD_1.0; +} FBSD_1.2;