From owner-freebsd-current Sun Mar 5 13:40:54 2000 Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id CEADE37BB16; Sun, 5 Mar 2000 13:40:50 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id CAE562E8158; Sun, 5 Mar 2000 13:40:50 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Sun, 5 Mar 2000 13:40:50 -0800 (PST) From: Kris Kennaway To: Randy Bush Cc: FreeBSD Current Subject: Re: libcrypto.a - deja vu? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 5 Mar 2000, Randy Bush wrote: > > cc -fpic -DPIC -O -pipe -Wall -I/usr/src/lib/libpam/modules/pam_deny/../../../../contrib/libpam/libpam/include -I/usr/obj/usr/src/i386/usr/include -c /usr/src/lib/libpam/modules/pam_deny/../../../../contrib/libpam/modules/pam_deny/pam_deny.c -o pam_deny.So > building standard pam_deny library > ranlib libpam_deny.a > building shared library pam_deny.so > ===> libpam/modules/pam_kerberosIV > make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. Stop > *** Error code 2 Are you building with NO_OPENSSL? I just ran into this exact problem myself overnight with my buildworld with NO_OPENSSL enabled. Try this patch: Index: Makefile =================================================================== RCS file: /home/ncvs/src/lib/libpam/modules/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 2000/02/28 21:00:50 1.7 +++ Makefile 2000/03/05 21:30:35 @@ -26,10 +26,10 @@ SUBDIR+= pam_cleartext_pass_ok SUBDIR+= pam_deny -.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT) +.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+= pam_kerberosIV .endif -.if defined(MAKE_KERBEROS5__) && !defined(NOCRYPT) +.if defined(MAKE_KERBEROS5__) && !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+= pam_kerberos5 .endif SUBDIR+= pam_permit ---- 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-current" in the body of the message