From owner-svn-src-head@FreeBSD.ORG Mon Oct 3 20:49:03 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B267106564A; Mon, 3 Oct 2011 20:49:03 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB378FC16; Mon, 3 Oct 2011 20:49:03 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p93Kn323027281; Mon, 3 Oct 2011 20:49:03 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p93Kn3jj027278; Mon, 3 Oct 2011 20:49:03 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201110032049.p93Kn3jj027278@svn.freebsd.org> From: Nathan Whitehorn Date: Mon, 3 Oct 2011 20:49:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225952 - in head: . lib lib/libftpio X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2011 20:49:03 -0000 Author: nwhitehorn Date: Mon Oct 3 20:49:02 2011 New Revision: 225952 URL: http://svn.freebsd.org/changeset/base/225952 Log: Now that its only consumer is gone (sysinstall), remove libftpio as well. Deleted: head/lib/libftpio/ Modified: head/ObsoleteFiles.inc head/lib/Makefile Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Mon Oct 3 20:46:36 2011 (r225951) +++ head/ObsoleteFiles.inc Mon Oct 3 20:49:02 2011 (r225952) @@ -39,7 +39,18 @@ # done # 20110930: sysinstall removed -OLD_FILES+=usr/sbin/sysinstall usr/share/man/man8/sysinstall.8.gz +OLD_FILES+=usr/sbin/sysinstall +OLD_FILES+=usr/share/man/man8/sysinstall.8.gz +OLD_FILES+=usr/lib/libftpio.a +OLD_FILES+=usr/lib/libftpio.so +OLD_LIBS+=usr/lib/libftpio.so.8 +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" +OLD_FILES+=usr/lib32/libftpio.a +OLD_FILES+=usr/lib32/libftpio.so +OLD_LIBS+=usr/lib32/libftpio.so.8 +.endif +OLD_FILES+=usr/include/ftpio.h +OLD_FILES+=usr/share/man/man3/ftpio.3.gz # 20110915: rename congestion control manpages OLD_FILES+=usr/share/man/man4/cc.4.gz OLD_FILES+=usr/share/man/man9/cc.9.gz Modified: head/lib/Makefile ============================================================================== --- head/lib/Makefile Mon Oct 3 20:46:36 2011 (r225951) +++ head/lib/Makefile Mon Oct 3 20:49:02 2011 (r225952) @@ -70,7 +70,6 @@ SUBDIR= ${SUBDIR_ORDERED} \ ${_libefi} \ libexpat \ libfetch \ - libftpio \ libgeom \ ${_libgpib} \ ${_libgssapi} \