Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Apr 2000 12:27:28 -0700 (PDT)
From:      Kris Kennaway <kris@FreeBSD.org>
To:        Frank Seltzer <frankd@gator.net>
Cc:        stable@FreeBSD.org
Subject:   Re: 4.0, OpenSSL and MD5 (fwd)
Message-ID:  <Pine.BSF.4.21.0004131225120.8526-100000@freefall.freebsd.org>
In-Reply-To: <Pine.BSF.4.20.0004130929340.274-100000@Cat.nina.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, 13 Apr 2000, Frank Seltzer wrote:

> On Wed, 12 Apr 2000, Kris Kennaway wrote:
> 
> > Build your world with NODESCRYPTLINKS=yes, or if you're doing a binary
> > install then point the libcrypt links to libscrypt manually post-install.
> 
> I used
> 
> 	make -DNODESCRYPTLINKS=true {build|install}world
> 
> and this is what I get:

Hmm. This might have happened if you had no links there at all when doing
the installworld - the following patch should correct it.

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/secure/lib/libcrypt/Makefile,v
retrieving revision 1.26
diff -u -r1.26 Makefile
--- Makefile	2000/02/29 05:47:52	1.26
+++ Makefile	2000/04/13 19:25:45
@@ -33,7 +33,7 @@
 
 # We only install the links if they do not already exist.
 # This may have to be revised
-.if !exists(${DESTDIR}${LIBDIR}/${LCRYPTBASE}.a)
+.if !exists(${DESTDIR}${LIBDIR}/${LCRYPTBASE}.a) && !defined(NODESCRYPTLINKS)
 SYMLINKS+=	${LSCRYPTBASE}.a ${LIBDIR}/${LCRYPTBASE}.a
 .endif
 .if !defined(NOPROFILE) && !exists(${DESTDIR}${LIBDIR}/${LCRYPTBASE}_p.a)

but the next time you run make installworld it would repoint them
anyway. I thought I'd tested the case of having no links, but perhaps I
didn't - I'll check some more and commit the above if necessary.

Kris

----
In God we Trust -- all others must submit an X.509 certificate.
    -- Charles Forsythe <forsythe@alum.mit.edu>



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0004131225120.8526-100000>