summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1996-10-31 14:59:55 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1996-10-31 14:59:55 +0000
commit146e51442cb60f9dd4d85fe9fb438415ae7bb093 (patch)
treee0ed886343eea9943fdf2b5006aec1f425f40502 /gnu/usr.bin
parentf75fdd6f81dbc1bc2557060bb13a876b28d224d6 (diff)
Correct kerb header location.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/sudo/sudo/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/sudo/sudo/Makefile b/gnu/usr.bin/sudo/sudo/Makefile
index 4770a031d76..5791001dc08 100644
--- a/gnu/usr.bin/sudo/sudo/Makefile
+++ b/gnu/usr.bin/sudo/sudo/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 1996/10/14 05:14:43 millert Exp $
+# $OpenBSD: Makefile,v 1.2 1996/10/31 14:59:54 millert Exp $
PROG= sudo
MAN= sudo.8 sudoers.5
@@ -18,11 +18,11 @@ DPADD+= ${LIBSKEY}
.endif
.if defined(KERBEROS5)
-CFLAGS+= -DHAVE_KERB5
+CFLAGS+= -DHAVE_KERB5 -I/usr/include/kerberosIV
LDADD+= -lkrb5 -lcrypto
DPADD+= ${LIBKRB5} ${LIBCRYPTO}
.elif defined(KERBEROS)
-CFLAGS+= -DHAVE_KERB4
+CFLAGS+= -DHAVE_KERB4 -I/usr/include/kerberosIV
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif