From owner-freebsd-stable Thu Apr 13 12:27:35 2000 Delivered-To: freebsd-stable@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B89A037BDA4; Thu, 13 Apr 2000 12:27:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id MAA12928; Thu, 13 Apr 2000 12:27:28 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 13 Apr 2000 12:27:28 -0700 (PDT) From: Kris Kennaway To: Frank Seltzer Cc: stable@FreeBSD.org Subject: Re: 4.0, OpenSSL and MD5 (fwd) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message