From owner-freebsd-current Tue Jun 16 06:31:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07040 for freebsd-current-outgoing; Tue, 16 Jun 1998 06:31:24 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from kong.dorms.spbu.ru (kong@kong.dorms.spbu.ru [195.19.252.147]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06913 for ; Tue, 16 Jun 1998 06:30:10 -0700 (PDT) (envelope-from kong@kong.dorms.spbu.ru) Received: from localhost (kong@localhost) by kong.dorms.spbu.ru (8.8.8/kong/0.01) with SMTP id RAA22584; Tue, 16 Jun 1998 17:27:33 +0400 (MSD) (envelope-from kong@kong.dorms.spbu.ru) Date: Tue, 16 Jun 1998 17:27:33 +0400 (MSD) From: Hostas Red To: Peter Wemm cc: current@FreeBSD.ORG Subject: Re: ssh 1.2.25: port broken on current In-Reply-To: <199806161222.UAA03749@spinner.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! On Tue, 16 Jun 1998, Peter Wemm wrote: [...] > > Yes, it is. But - /usr/lib/aout/libc.so.3.1 (jun,16) almost the same date > > as /usr/include/arpa/inet.h (jun 12), but /usr/lib/libc.so.3.1 is > > (may,26). But - /usr/lib/aout in LIBPATH, not /usr/lib. Whats the problem? > > At a guess, your ldconfig path in /etc/rc is putting /usr/lib first so > you're getting the "old" library... I've found solution - /usr/lib hardcoded in patch-ac. So, we need to change it (relatively, maybe, because of -stable branch). Or delete all obsloete libs from /usr/lib and rebuild some programs :). Or to make copies of newbuilt libs to /usr/lib in each 'make world'. :) So, I've just changed patch-ac, now everything works fine, but, of coz, it will not work in ELF world :) *** patch-ac Tue Jun 16 17:22:18 1998 --- patch-ac.orig Tue Jun 16 17:21:42 1998 *************** *** 20,32 **** GMPDIR = gmp-2.0.2-ssh-2 ! # We have the same libgmp in the system, so use it instead ! GMPINCDIR = /usr/include ! ! GMPLIBDIR = /usr/lib/aout ! GMPLIBS = -L$(GMPLIBDIR) -lgmp ! GMPDEP = $(GMPINCDIR)/gmp.h $(GMPLIBDIR)/libgmp.a ZLIBDIR = zlib-1.0.4 ! ZLIBINCDIR = /usr/include ! ! ZLIBLIBDIR = /usr/lib/aout ! ZLIBDEP = $(ZLIBINCDIR)/libz.a ! ZLIBLIBS = -L$(ZLIBLIBDIR) -lz --- 20,32 ---- GMPDIR = gmp-2.0.2-ssh-2 ! # We have the same libgmp in the system, so use it instead ! GMPINCDIR = /usr/include ! ! GMPLIBDIR = /usr/lib ! GMPLIBS = -L$(GMPLIBDIR) -lgmp ! GMPDEP = $(GMPINCDIR)/gmp.h $(GMPLIBDIR)/libgmp.a ZLIBDIR = zlib-1.0.4 ! ZLIBINCDIR = /usr/include ! ! ZLIBLIBDIR = /usr/lib ! ZLIBDEP = $(ZLIBINCDIR)/libz.a ! ZLIBLIBS = -L$(ZLIBLIBDIR) -lz Adios, /KONG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message