diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-05-11 00:20:22 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-05-11 00:20:22 +0000 |
commit | 8af263c86ca9069f7b81553ac8eeb857e092bf7b (patch) | |
tree | 4c3c0abc671f01208e923407224282de7a99c7f9 /libexec/login_krb5-or-pwd | |
parent | c5d734d9312af8955fd681c243c46501f2e88049 (diff) |
Add missing libraries to bsd.prog.mk (mostly kerberosV)
Use them in DPADD throughout the tree.
Fix a few mispells (LIBMATH -> LIBM...)
Wipe obsolete lib (LIBRESOLV)
Sort added missing libraries, move obsolete stuff apart.
Synch documentation in bsd.README
ok deraadt@
Diffstat (limited to 'libexec/login_krb5-or-pwd')
-rw-r--r-- | libexec/login_krb5-or-pwd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/login_krb5-or-pwd/Makefile b/libexec/login_krb5-or-pwd/Makefile index 6456171a1a1..c9e5fdff751 100644 --- a/libexec/login_krb5-or-pwd/Makefile +++ b/libexec/login_krb5-or-pwd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2002/03/05 00:09:32 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2002/05/11 00:20:20 espie Exp $ .include <bsd.own.mk> @@ -9,7 +9,8 @@ CFLAGS+=-DPASSWD -Wall -Werror -I${.CURDIR}/../login_passwd .if (${KERBEROS:L} == "yes") SRCS+= login_krb5.c -DPADD+= ${LIBKRB} ${LIBCRYPTO} ${LIBUTIL} +DPADD+= ${LIBKRB} ${LIBCRYPTO} ${LIBUTIL} ${LIBKRB5} ${LIBKASN1} \ + ${LIBCOM_ERR} ${LIBKAFS} ${LIBDES} LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lkrb -lutil -lkafs -ldes CFLAGS+=-DKRB524 -DKRB5 .PATH: ${.CURDIR}/../login_passwd ${.CURDIR}/../login_krb5 |