Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Mar 2000 13:40:50 -0800 (PST)
From:      Kris Kennaway <kris@hub.freebsd.org>
To:        Randy Bush <randy@psg.com>
Cc:        FreeBSD Current <freebsd-current@freebsd.org>
Subject:   Re: libcrypto.a  -  deja vu?
Message-ID:  <Pine.BSF.4.21.0003051338420.22291-100000@hub.freebsd.org>
In-Reply-To: <E12RgFc-000CY2-00@rip.psg.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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 <forsythe@alum.mit.edu>



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" 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.0003051338420.22291-100000>