Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Aug 1998 13:31:10 -0400 (EDT)
From:      cmascott@world.std.com
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   misc/7759: proflibs installation error, libcrypt_p.a
Message-ID:  <199808271731.NAA00840@europa.local>

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

>Number:         7759
>Category:       misc
>Synopsis:       proflibs installation error, libcrypt_p.a
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 27 10:40:00 PDT 1998
>Last-Modified:
>Originator:     Carl Mascott
>Organization:
>Release:        FreeBSD 2.2.7-RELEASE i386
>Environment:

FreeBSD europa.local 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Mon Aug 24 20:48:25 EDT 1998
cmascott@europa.local:/usr/src/sys/compile/EUR980824  i386

>Description:

If one installs the profiled libraries on a system that already
has the DES libraries, the installation does not take account
of the fact that the DES libraries are present and creates
a symlink libcrypt_p.a -> libscrypt_p.a.  With the DES libraries
present, the symlink should be libcrypt_p.a -> libdescrypt_p.a.

>How-To-Repeat:

Install the profiled libraries on a system that already has
the DES libraries.

>Fix:
	
Insert the following code in proflibs/install.sh on CD-ROM #1
just before the "exit 0" line:

cd /usr/lib
if [ -f libdescrypt_p.a ]
then
	ln -f -s libdescrypt_p.a libcrypt_p.a
fi

(This code fragment has been tested.)
>Audit-Trail:
>Unformatted:

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



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