Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Feb 2000 13:01:51 +0900
From:      haro@tk.kubota.co.jp (Munehiro Matsuda)
To:        freebsd-current@freebsd.org
Subject:   buildworld failed in libpam due to crypto changes.
Message-ID:  <20000226130151R.haro@tk.kubota.co.jp>

next in thread | raw e-mail | index | archive | help
Hi all,

Buildworld failed due to crypto related changes in libpam.
With following patch, buildworld and installworld went successful for me.

They are for: 
	src/lib/libpam/libpam/Makefile	rev1.9
	src/lib/libpam/modules/Makefile rev 1.4

diff -ru lib.org/libpam/libpam/Makefile lib/libpam/libpam/Makefile
--- lib.org/libpam/libpam/Makefile	Fri Feb 25 11:53:34 2000
+++ lib/libpam/libpam/Makefile	Sat Feb 26 10:00:02 2000
@@ -71,7 +71,7 @@
 STATIC_MODULES+= ${MODOBJDIR}/pam_permit/libpam_permit.a
 STATIC_MODULES+= ${MODOBJDIR}/pam_radius/libpam_radius.a
 STATIC_MODULES+= ${MODOBJDIR}/pam_skey/libpam_skey.a
-.if !defined(NO_OPENSSL)
+.if exists(${.CURDIR}/../../../crypto) && !defined(NO_OPENSSL)
 STATIC_MODULES+= ${MODOBJDIR}/pam_ssh/libpam_ssh.a
 .endif
 STATIC_MODULES+= ${MODOBJDIR}/pam_tacplus/libpam_tacplus.a
diff -ru lib.org/libpam/modules/Makefile lib/libpam/modules/Makefile
--- lib.org/libpam/modules/Makefile	Fri Feb 25 11:53:34 2000
+++ lib/libpam/modules/Makefile	Sat Feb 26 09:56:48 2000
@@ -35,7 +35,7 @@
 SUBDIR+=	pam_permit
 SUBDIR+=	pam_radius
 SUBDIR+=	pam_skey
-.if !defined(NO_OPENSSL)
+.if exists(${.CURDIR}/../../../crypto) && !defined(NO_OPENSSL)
 SUBDIR+=	pam_ssh
 .endif
 SUBDIR+=	pam_tacplus


   Thank you,
    Haro
=------------------------------------------------------------------------------
           _ _    Munehiro (haro) Matsuda
 -|- /_\  |_|_|   Office of Business Planning & Development, Kubota Corp.
 /|\ |_|  |_|_|   1-3 Nihonbashi-Muromachi 3-Chome
                  Chuo-ku Tokyo 103, Japan
                  Tel: +81-3-3245-3318  Fax: +81-3-32454-3315
                  Email: haro@tk.kubota.co.jp


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?20000226130151R.haro>