Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Jun 2000 14:52:13 -0700 (PDT)
From:      Kris Kennaway <kris@FreeBSD.org>
To:        Scott Michel <scottm@CS.UCLA.EDU>
Cc:        freebsd-stable@freebsd.org
Subject:   Re: buildworld error
Message-ID:  <Pine.BSF.4.21.0006101451280.60767-100000@freefall.freebsd.org>
In-Reply-To: <200006102039.NAA41100@mordred.cs.ucla.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 10 Jun 2000, Scott Michel wrote:

> /usr/obj/usr/src/secure/usr.sbin/sshd/../../lib/libssh/libssh.a(auth-skey.o): In function `skey_fake_keyinfo':
> auth-skey.o(.text+0x2ae): undefined reference to `SHA1_Data'
> auth-skey.o(.text+0x438): undefined reference to `SHA1_End'
> auth-skey.o(.text+0x495): undefined reference to `SHA1_End'
> *** Error code 1
> 
> Anyone got a clue-by-four to hit me with?

Please try this patch:

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/secure/usr.sbin/sshd/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- Makefile    2000/05/15 05:26:50     1.7
+++ Makefile    2000/06/10 21:50:46
@@ -38,8 +38,8 @@
 .endif # MAKE_KERBEROS5

 CFLAGS+= -DSKEY
-LDADD+=        -lopie
-DPADD+=        ${LIBOPIE}
+LDADD+=        -lopie -lmd
+DPADD+=        ${LIBOPIE} ${LIBMD}

 .include <bsd.prog.mk>

I'm not sure why libmd is being linked by default on my systems.

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.0006101451280.60767-100000>