From owner-freebsd-current Fri Feb 23 10:44:10 2001 Delivered-To: freebsd-current@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 1022937B491 for ; Fri, 23 Feb 2001 10:44:07 -0800 (PST) (envelope-from jhb@foo.osd.bsdi.com) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id f1NIhqK27761; Fri, 23 Feb 2001 10:43:53 -0800 (PST) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.1/8.11.1) id f1NIhCc76165; Fri, 23 Feb 2001 10:43:12 -0800 (PST) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200102230429.f1N4TN172703@zibbi.icomtek.csir.co.za> Date: Fri, 23 Feb 2001 10:43:07 -0800 (PST) Organization: BSD, Inc. From: John Baldwin To: John Hay Subject: Re: Release b0rked.. Cc: current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 23-Feb-01 John Hay wrote: >> ===> lib/libgssapi >> rm -f .depend >> mkdep -f .depend -a > ... >> /usr/src/kerberos5/lib/libgssapi/../../../crypto/heimdal/lib/krb5/krb5.h:43: >> krb5_err.h: No such file or directory >> /usr/src/kerberos5/lib/libgssapi/../../../crypto/heimdal/lib/krb5/krb5.h:44: >> heim_err.h: No such file or directory > > You can get past this error with this patch, but it will just die a little > later in another part of kerberos. You should have better luck by building > a release with NOKERBEROS=YES. I was able to build one yesterday. Hrm, I already got release fixed here locally with this patch which looks more like what the other libraries do: Index: kerberos5/lib/libgssapi//Makefile =================================================================== RCS file: /host/ares/usr/home/ncvs/src/kerberos5/lib/libgssapi/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- kerberos5/lib/libgssapi//Makefile 2001/02/13 16:56:50 1.1 +++ kerberos5/lib/libgssapi//Makefile 2001/02/23 02:34:46 @@ -7,7 +7,8 @@ -I${KRB5DIR}/lib/roken \ -I${KRB5DIR}/lib/des \ -I${KRB5DIR}/include \ - -I${ASN1OBJDIR} + -I${ASN1OBJDIR} \ + -I${.OBJDIR} SRCS= \ 8003.c \ @@ -49,8 +50,10 @@ wrap.c \ address_to_krb5addr.c -INCLUDES=${KRB5DIR}/lib/gssapi/gssapi.h +INCLUDES=${KRB5DIR}/lib/gssapi/gssapi.h heim_err.h krb5_err.h .include .PATH: ${KRB5DIR}/lib/gssapi + +beforedepend all: heim_err.h krb5_err.h Oops, and I've already committed this. I'm sure it will get backed out if it isn't correct. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message