From: Jim Dutton <[EMAIL PROTECTED]>
jimd> Under FreeBSD the Makefile attempted to execute an undefined
jimd> "linux-shared" make target when told to create a shared object. Using
jimd> the "do_gnu-shared:" target works just fine. This will probably be true
jimd> for NetBSD as well.
Found it! The following patch should fix the problem (you'll need to
reconfigure. Use `./Configure reconf'):
--- Makefile.org 2001/03/24 12:37:32 1.99.2.6
+++ Makefile.org 2001/04/04 04:17:51
@@ -250,7 +250,7 @@
build-shared: clean-shared do_$(SHLIB_TARGET) link-shared
-do_bsd-gcc-shared: linux-shared
+do_bsd-gcc-shared: do_gnu-shared
do_linux-shared: do_gnu-shared
do_gnu-shared:
libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
(I'm committing this patch right away)
--
Richard Levitte \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken \ S-168 35 BROMMA \ T: +46-8-26 52 47
Redakteur@Stacken \ SWEDEN \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/
Unsolicited commercial email is subject to an archival fee of $400.
See <http://www.stacken.kth.se/~levitte/mail/> for more info.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]
Re: shared object problem for OpenSSL-0.9.6a-beta3 (FreeBSD)
Richard Levitte - VMS Whacker Tue, 03 Apr 2001 21:03:48 -0700
