diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-16 02:15:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-16 02:15:33 +0000 |
commit | fad9d98927af712c388c6deafab0bc9b85577784 (patch) | |
tree | 9240acf8f9267b8c7d50d9a41bbfc037f1307976 /usr.bin/sudo | |
parent | fad4867c7ed92487ad7e6f7f079a333e7cdc8bc5 (diff) |
Don't need to link in kerberos or skey libs anymore; we use BSD auth
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/Makefile.bsd-wrapper | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/usr.bin/sudo/Makefile.bsd-wrapper b/usr.bin/sudo/Makefile.bsd-wrapper index 3d7e184be98..2f89c058d89 100644 --- a/usr.bin/sudo/Makefile.bsd-wrapper +++ b/usr.bin/sudo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2003/03/15 19:26:28 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.17 2003/03/16 02:15:32 millert Exp $ MAN= sudo.8 sudoers.5 visudo.8 BINOWN= root @@ -8,18 +8,6 @@ CONFIGURE_OPTS= --prefix=/usr --with-devel --with-insults --with-bsdauth \ .include <bsd.own.mk> -.if (${SKEY:L} == "yes") -CONFIGURE_OPTS+=--with-skey -LDADD+= -lskey -DPADD+= ${LIBSKEY} -.endif - -.if (${KERBEROS:L} == "yes") -CONFIGURE_OPTS+=--with-kerb4 -LDADD+= -lkrb -ldes -lkafs -DPADD+= ${LIBKRB} ${LIBDES} ${LIBKAFS} -.endif - all: config.status ${MAKE} |