diff options
author | 2003-05-17 00:43:46 +0000 | |
---|---|---|
committer | 2003-05-17 00:43:46 +0000 | |
commit | a7db8c81c6cd1a81e1bd2ec2adbf377453944088 (patch) | |
tree | 795d61c7b325f438088581fee19893c4308d5551 | |
parent | use MAP_FAILED rather than -1; millert@ ok. (diff) | |
download | wireguard-openbsd-a7db8c81c6cd1a81e1bd2ec2adbf377453944088.tar.xz wireguard-openbsd-a7db8c81c6cd1a81e1bd2ec2adbf377453944088.zip |
Don't link with -lkrb -lkafs
-rw-r--r-- | libexec/login_krb5-or-pwd/Makefile | 4 | ||||
-rw-r--r-- | libexec/login_krb5/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libexec/login_krb5-or-pwd/Makefile b/libexec/login_krb5-or-pwd/Makefile index 4b93ed73eeb..f3fe047d10c 100644 --- a/libexec/login_krb5-or-pwd/Makefile +++ b/libexec/login_krb5-or-pwd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2003/05/13 04:41:00 hin Exp $ +# $OpenBSD: Makefile,v 1.9 2003/05/17 00:45:02 hin Exp $ .include <bsd.own.mk> @@ -11,7 +11,7 @@ CFLAGS+=-DPASSWD -Wall -Werror -I${.CURDIR}/../login_passwd SRCS+= login_krb5.c DPADD+= ${LIBKRB} ${LIBCRYPTO} ${LIBUTIL} ${LIBKRB5} ${LIBKASN1} \ ${LIBCOM_ERR} ${LIBKAFS} ${LIBDES} -LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lkrb -lutil -lkafs -ldes +LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lutil -ldes CFLAGS+=-DKRB5 .PATH: ${.CURDIR}/../login_passwd ${.CURDIR}/../login_krb5 .else diff --git a/libexec/login_krb5/Makefile b/libexec/login_krb5/Makefile index fbb4e7d2a8e..ac6e3886548 100644 --- a/libexec/login_krb5/Makefile +++ b/libexec/login_krb5/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2003/05/13 04:41:00 hin Exp $ +# $OpenBSD: Makefile,v 1.13 2003/05/17 00:43:46 hin Exp $ .include <bsd.own.mk> @@ -12,7 +12,7 @@ CFLAGS+=-Wall -Werror -I${.CURDIR}/../login_passwd SRCS+= login_krb5.c DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBKRB} ${LIBCRYPTO} ${LIBCOM_ERR} ${LIBKAFS} \ ${LIBDES} -LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lkrb -lkafs -ldes +LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -ldes CFLAGS+=-DKRB5 .endif |