[660] in Kerberos-V5-bugs
V4 include files vs v4 libraries
daemon@ATHENA.MIT.EDU (Paul Pomes)
Thu Aug 18 14:33:40 1994
Date: Thu, 18 Aug 1994 13:33:31 -0500
From: Paul Pomes <P-Pomes@uiuc.edu>
To: krb5-bugs@MIT.EDU
When building with --with-krb4=/usr/local, the Makefiles take the include
files from
KRB4INCLUDES=-I$(SRCTOP)/include/kerberosIV
while the libraries come from
KRB4 = /usr/local
K4LIB = $(KRB4)/lib/libkrb.a $(TOPLIBD)/libdes425.a
This leads to a mismatch since the libraries were built using the include
files in /usr/local/include/kerberosIV. Shouldn't KRB4INCLUDES be defined
instead as
KRB4INCLUDESS=-I$(KRB4)/include/kerberosIV
? Or else should the v4 code be included in the krb5 distribution?
/pbp