Date: Thu, 5 Aug 1999 12:32:03 -0700 (PDT) From: Doug <Doug@gorean.org> To: freebsd-questions@freebsd.org Subject: Re: Best way to add DES to a -stable/-current system w/out world build? Message-ID: <Pine.BSF.4.05.9908051229180.1799-100000@dt011n65.san.rr.com> In-Reply-To: <Pine.BSF.4.05.9908041854300.25640-100000@dt011n65.san.rr.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 4 Aug 1999, Doug wrote: > I need to add DES libraries to a -current system that for various > reasons I can't do a make world on at the moment. Off hand I can think of > two ways to do this. First, use /stand/sysinstall, in the options menu set > the "release" to be equivalent to the snapshot of the day I compiled, then > install them from the snapshot server. For the archives, this worked just fine. Since not all of the machines I needed to change have ftp access to the outside world I just copied the des libs to /usr/lib and used the following little script to set the symlinks. Hope this helps someone, Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers #!/bin/sh cd /usr/lib ln -s libdes.so.3 libdes.so ln -s libdescrypt.so.2 libdescrypt.so rm libcrypt.a && ln -s libdescrypt.a libcrypt.a && rm libcrypt.so && ln -s libdescrypt.so libcrypt.so && rm libcrypt.so.2 && ln -s libdescrypt.so.2 libcrypt.so.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" 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.05.9908051229180.1799-100000>