From owner-svn-src-head@freebsd.org Tue Mar 17 15:57:26 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4D3DC26A34B; Tue, 17 Mar 2020 15:57:26 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48hd914hW2z3KXp; Tue, 17 Mar 2020 15:57:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 946D8B9C1; Tue, 17 Mar 2020 15:57:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02HFvPjT050880; Tue, 17 Mar 2020 15:57:25 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02HFvPIL050879; Tue, 17 Mar 2020 15:57:25 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <202003171557.02HFvPIL050879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Tue, 17 Mar 2020 15:57:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r359037 - head/sbin/ldconfig X-SVN-Group: head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/sbin/ldconfig X-SVN-Commit-Revision: 359037 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 17 Mar 2020 15:57:26 -0000 Author: emaste Date: Tue Mar 17 15:57:25 2020 New Revision: 359037 URL: https://svnweb.freebsd.org/changeset/base/359037 Log: ldconfig: add aout deprecation notice aout support in ldconfig hasn't been required since FreeBSD 2.x. Anyone still using FreeBSD 2 shared libraries can also use a FreeBSD 2 ldconfig to generate aout ldconfig hints. Sponsored by: The FreeBSD Foundation Modified: head/sbin/ldconfig/ldconfig.8 head/sbin/ldconfig/ldconfig.c Modified: head/sbin/ldconfig/ldconfig.8 ============================================================================== --- head/sbin/ldconfig/ldconfig.8 Tue Mar 17 14:59:24 2020 (r359036) +++ head/sbin/ldconfig/ldconfig.8 Tue Mar 17 15:57:25 2020 (r359037) @@ -29,7 +29,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 6, 2018 +.Dd March 17, 2020 .Dt LDCONFIG 8 .Os .Sh NAME @@ -111,6 +111,8 @@ Generate the hints for 32-bit ABI shared libraries on 64-bit systems that support running 32-bit binaries. .It Fl aout Generate the hints for a.out format shared libraries. +This option is deprecated and is not present in +.Fx 13 . .It Fl elf Generate the hints for ELF format shared libraries. .It Fl R Modified: head/sbin/ldconfig/ldconfig.c ============================================================================== --- head/sbin/ldconfig/ldconfig.c Tue Mar 17 14:59:24 2020 (r359036) +++ head/sbin/ldconfig/ldconfig.c Tue Mar 17 15:57:25 2020 (r359037) @@ -118,6 +118,7 @@ main(int argc, char **argv) while (argc > 1) { if (strcmp(argv[1], "-aout") == 0) { + warnx("aout support is deprecated"); is_aout = 1; argc--; argv++;