Remove some KRB4 scraps, and allow NOSHARED make worlds to

complete.

OK'ed by:	re(scottl)
This commit is contained in:
Mark Murray 2003-05-11 18:49:29 +00:00
parent 1cec3c808d
commit 6843449a02
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114914
3 changed files with 9 additions and 17 deletions

View File

@ -1118,9 +1118,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg }
/* Define if you are running IRIX 4. */
/* #undef IRIX4 */
/* Define if you have the krb4 package. */
/* #undef KRB4 */
/* Enable Kerberos 5 support in applications. */
#define KRB5 1
@ -1328,13 +1325,7 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg }
/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef uid_t */
#if defined(HAVE_FOUR_VALUED_KRB_PUT_INT) || !defined(KRB4)
#define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (L), (S))
#else
#define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (S))
#endif
#if defined(ENCRYPTION) && !defined(AUTHENTICATION)
#define AUTHENTICATION 1

View File

@ -33,17 +33,17 @@ CFLAGS+= -I${KRB5DIR}/include \
-I${ASN1OBJDIR} \
-I${HDBOBJDIR} \
-I${.OBJDIR}
LDADD= -L${KRB5OBJDIR} -lkrb5 \
LDADD= -L${KADM5COBJDIR} -lkadm5clnt -L${KADM5SOBJDIR} -lkadm5srv \
-L${KRB5OBJDIR} -lkrb5 \
-L${ROKENOBJDIR} -lroken \
-L${VERSOBJDIR} -lvers \
-L${KADM5COBJDIR} -lkadm5clnt -L${KADM5SOBJDIR} -lkadm5srv \
-L${HDBOBJDIR} -lhdb \
-L${ASN1OBJDIR} -lasn1 -lcrypto -lcrypt -lcom_err \
-L${SLOBJDIR} -lsl -lreadline
-L${SLOBJDIR} -lsl -lreadline -lcurses
DPADD= ${LIBKRB5} ${LIBKAFS5} ${LIBROKEN} \
${LIBKADM5CLNT} ${LIBKADM5SRV} ${LIBHDB} \
${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} \
${LIBSL} ${LIBREADLINE}
${LIBSL} ${LIBREADLINE} ${LIBCURSES}
MAN= kadmin.8
.include <bsd.prog.mk>

View File

@ -25,15 +25,16 @@ CFLAGS+= -I${KRB5DIR}/include \
-I${KRB5DIR}/admin \
-I${ASN1OBJDIR} \
-I${.OBJDIR}
LDADD= -L${KRB5OBJDIR} -lkrb5 \
LDADD= -L${KADM5COBJDIR} -lkadm5clnt \
-L${KRB5OBJDIR} -lkrb5 \
-L${ROKENOBJDIR} -lroken \
-L${VERSOBJDIR} -lvers \
-L${SLOBJDIR} -lsl -L${ASN1OBJDIR} -lasn1 \
-L${KADM5COBJDIR} -lkadm5clnt \
-lcrypto -lcrypt -lcom_err -lreadline
-lcrypto -lcrypt -lcom_err -lreadline -lcurses
DPADD= ${LIBKRB5} ${LIBKAFS5} ${LIBROKEN} \
${LIBSL} ${LIBASN1} ${LIBKADM5CLNT} \
${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} ${LIBREADLINE}
${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} ${LIBREADLINE} \
${LIBCURSES}
MAN= ktutil.8
.include <bsd.prog.mk>