From owner-freebsd-current Mon Oct 21 13:32:34 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA09848 for current-outgoing; Mon, 21 Oct 1996 13:32:34 -0700 (PDT) Received: from sequent.kiae.su (sequent.kiae.su [193.125.152.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id NAA09835; Mon, 21 Oct 1996 13:32:27 -0700 (PDT) Received: by sequent.kiae.su id AA23810 (5.65.kiae-2 ); Tue, 22 Oct 1996 00:31:12 +0400 Received: by sequent.KIAE.su (UUMAIL/2.0); Tue, 22 Oct 96 00:31:12 +0400 Received: (from ache@localhost) by nagual.ru (8.7.6/8.7.3) id AAA04649; Tue, 22 Oct 1996 00:29:56 +0400 (MSD) Message-Id: <199610212029.AAA04649@nagual.ru> Subject: Re: Something really weird with new libgmp import! In-Reply-To: <199610212004.WAA09596@grumble.grondar.za> from "Mark Murray" at "Oct 21, 96 10:04:24 pm" To: mark@grondar.za (Mark Murray) Date: Tue, 22 Oct 1996 00:29:56 +0400 (MSD) Cc: markm@freebsd.org, current@freebsd.org From: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) Organization: self X-Class: Fast X-Mailer: ELM [version 2.4ME+ PL28 (25)] Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM845929796-4622-0_ Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk --ELM845929796-4622-0_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit > "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" wrote: > > Ssh not work anymore with our newly imported libgmp 2.0.2 (but work > > with its own libgmp 2.0.2 copy or even with our _old_ libgmp), > > please fix it. > > Hi > > I can't duplicate this. I works just fine for me. How did you get this? > What keys, etc did you use? No keys, just any plain "ssh " command do it. BTW, to duplicate it you need to enable system libgmp into ssh, it use its own copy by default which works. Replace patch-ag with attached variant. -- Andrey A. Chernov http://www.nagual.ru/~ache/ --ELM845929796-4622-0_ Content-Type: text/plain Content-Disposition: attachment; filename=patch-ag Content-Description: patch-ag Content-Transfer-Encoding: 7bit *** Makefile.in.orig Mon Oct 21 23:27:43 1996 --- Makefile.in Mon Oct 21 23:30:20 1996 *************** *** 159,172 **** SHELL = /bin/sh GMPDIR = gmp-2.0.2 ! GMPINCDIR = $(GMPDIR) ! GMPLIBDIR = $(GMPDIR) GMPDEP = $(GMPINCDIR)/gmp.h $(GMPLIBDIR)/libgmp.a GMPLIBS = -L$(GMPLIBDIR) -lgmp ZLIBDIR = zlib-1.0.3 ! ZLIBINCDIR = $(ZLIBDIR) ! ZLIBLIBDIR = $(ZLIBDIR) ZLIBDEP = $(ZLIBINCDIR)/zlib.h $(ZLIBLIBDIR)/libz.a ZLIBLIBS = -L$(ZLIBLIBDIR) -lz --- 159,174 ---- SHELL = /bin/sh GMPDIR = gmp-2.0.2 ! # We have the same libgmp in the system, so use it instead ! GMPINCDIR = /usr/include ! GMPLIBDIR = /usr/lib GMPDEP = $(GMPINCDIR)/gmp.h $(GMPLIBDIR)/libgmp.a GMPLIBS = -L$(GMPLIBDIR) -lgmp ZLIBDIR = zlib-1.0.3 ! # We have newer libz in the system, so use it instead ! ZLIBINCDIR = /usr/include ! ZLIBLIBDIR = /usr/lib ZLIBDEP = $(ZLIBINCDIR)/zlib.h $(ZLIBLIBDIR)/libz.a ZLIBLIBS = -L$(ZLIBLIBDIR) -lz --ELM845929796-4622-0_--