Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Feb 2001 17:58:21 +0900
From:      Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
To:        assar@FreeBSD.ORG (Assar Westerlund)
Cc:        jhay@icomtek.csir.co.za, kuriyama@imgsrc.co.jp (Jun Kuriyama), n@nectar.com (Jacques A. Vidrine), markm@FreeBSD.ORG (Mark Murray), current@FreeBSD.ORG
Subject:   Re: Building procedure of krb5 is broken
Message-ID:  <20010223175821T.matusita@jp.FreeBSD.org>
In-Reply-To: <200102211348.f1LDmIX17944@zibbi.icomtek.csir.co.za>
References:  <5lu25oqi7h.fsf@assaris.sics.se> <200102211348.f1LDmIX17944@zibbi.icomtek.csir.co.za>

next in thread | previous in thread | raw e-mail | index | archive | help

jhay> Ahhhh, maybe this will also fix "make release". It has been
jhay> dying in the kerberos area the last few days.

Unfortunately, it does NOT fix "make release" breakage (already
reported by kuriyama-san). I've checked why, and make a patch to fix this.

--- src/kerberos5/lib/libgssapi/Makefile.dist	Wed Feb 14 01:56:50 2001
+++ src/kerberos5/lib/libgssapi/Makefile	Fri Feb 23 17:32:26 2001
@@ -7,7 +7,8 @@
 	-I${KRB5DIR}/lib/roken  \
 	-I${KRB5DIR}/lib/des	\
 	-I${KRB5DIR}/include	\
-	-I${ASN1OBJDIR}
+	-I${ASN1OBJDIR}		\
+	-I${KRB5OBJDIR}
 
 SRCS=				\
 	8003.c			\

Some header files of libgssapi require krb5_err.h but there is no
krb5_err.h in source repository. krb5_err.h only lives under /usr/obj,
since krb5_err.h is *generated* from krb5_err.et. Adding -I${KRB5OBJDIR}
should fix the problem.

If you want to reproduce what's the problem, try:
	cd /usr/src/kerberos5; make bootstrap

-- -
Makoto `MAR' MATSUSHITA

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?20010223175821T.matusita>