Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Oct 1996 00:29:56 +0400 (MSD)
From:      "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) <ache@nagual.ru>
To:        mark@grondar.za (Mark Murray)
Cc:        markm@freebsd.org, current@freebsd.org
Subject:   Re: Something really weird with new libgmp import!
Message-ID:  <199610212029.AAA04649@nagual.ru>
In-Reply-To: <199610212004.WAA09596@grumble.grondar.za> from "Mark Murray" at "Oct 21, 96 10:04:24 pm"

next in thread | previous in thread | raw e-mail | index | archive | help

--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 <host>" 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
<ache@nagual.ru>
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_--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199610212029.AAA04649>