From owner-cvs-all@FreeBSD.ORG Tue Jan 11 13:54:16 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D55516A4CE; Tue, 11 Jan 2005 13:54:16 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EB2243D1F; Tue, 11 Jan 2005 13:54:15 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j0BDsBed028259; Tue, 11 Jan 2005 15:54:11 +0200 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) j0BDsBjr073140; Tue, 11 Jan 2005 15:54:11 +0200 (EET) (envelope-from keramida@FreeBSD.org) Received: (from keramida@localhost)j0BDsB3h073136; Tue, 11 Jan 2005 15:54:11 +0200 (EET) (envelope-from keramida@FreeBSD.org) Date: Tue, 11 Jan 2005 15:54:11 +0200 From: Giorgos Keramidas To: Lukas Ertl Message-ID: <20050111135411.GA65973@orion.daedalusnetworks.priv> References: <200501110615.j0B6FJ1e044702@repoman.freebsd.org> <20050111141628.Q4043@pcle2.cc.univie.ac.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050111141628.Q4043@pcle2.cc.univie.ac.at> cc: Tom Rhodes cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/libexec/rtld-aout Makefile dynamic.hmd-prologue.c rtld.1aout rtld.c shlib.c shlib.h support.c support.h mdprologue.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 13:54:16 -0000 On 2005-01-11 14:17, Lukas Ertl wrote: >On Tue, 11 Jan 2005, Tom Rhodes wrote: >> Log: >> Remove a.out runtime linker. It doesn't build and was removed from the >> build over two years ago by peter. > > This breaks buildworld in sbin/ldconfig. A repocopy of shlib.[ch] and support.[ch] from src/libexec/rtld-aout into src/sbin/ldconfig and the following patch in src/sbin/ldconfig fixed the build of ldconfig here: % Index: Makefile % =================================================================== % RCS file: /home/ncvs/src/sbin/ldconfig/Makefile,v % retrieving revision 1.19 % diff -u -r1.19 Makefile % --- Makefile 23 Feb 2004 20:13:53 -0000 1.19 % +++ Makefile 11 Jan 2005 13:48:11 -0000 % @@ -2,11 +2,8 @@ % % PROG= ldconfig % SRCS= elfhints.c ldconfig.c shlib.c support.c % -LDDIR?= ${.CURDIR}/../../libexec/rtld-aout % -CFLAGS+=-I${LDDIR} -DFREEBSD_AOUT % +CFLAGS+=-I${.CURDIR} % WARNS?= 0 % MAN= ldconfig.8 % % -.PATH: ${LDDIR} % - % .include Note, however, that I haven't had the chance to test the resulting ldconfig binary. I need my workstation to do other work and cannot boot it into a test install.