diff options
author | markm <markm@FreeBSD.org> | 1999-01-25 06:49:43 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-01-25 06:49:43 +0000 |
commit | 924db72bc603c361cd9ee1dd36e5d5c83aa2a900 (patch) | |
tree | 49d1d6bad2a40c3a72d3f15ad95b4e788f4f2258 /kerberosIV/usr.sbin/ext_srvtab | |
parent | 5e3f42b3eded5cbce5c184a99d742385b941b62b (diff) | |
download | FreeBSD-src-924db72bc603c361cd9ee1dd36e5d5c83aa2a900.zip FreeBSD-src-924db72bc603c361cd9ee1dd36e5d5c83aa2a900.tar.gz |
Link everything against libcrypt. ELF builds complain without it.
Clean up the master makefile a bit and add a "dekerberise" target
for those who have shot themselves in the foot.
Thanks to: Randy Bush
Diffstat (limited to 'kerberosIV/usr.sbin/ext_srvtab')
-rw-r--r-- | kerberosIV/usr.sbin/ext_srvtab/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/kerberosIV/usr.sbin/ext_srvtab/Makefile b/kerberosIV/usr.sbin/ext_srvtab/Makefile index f9d7d01..d525b71 100644 --- a/kerberosIV/usr.sbin/ext_srvtab/Makefile +++ b/kerberosIV/usr.sbin/ext_srvtab/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.2 1997/10/02 15:03:20 markm Exp $ PROG= ext_srvtab MAN8= ${KRB4DIR}/man/ext_srvtab.8 @@ -11,9 +11,8 @@ CFLAGS+= -I${KRB4DIR}/include \ -I${KRB4DIR}/lib/krb \ -I${.CURDIR}/../include LDADD= -L${ROKENOBJDIR} -lroken \ - -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes -DPADD= ${LIBROKEN} ${LIBKDB} ${LIBKRB} \ - ${LIBDES} + -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes -lcrypt +DPADD= ${LIBROKEN} ${LIBKDB} ${LIBKRB} ${LIBDES} ${LIBCRYPT} .include <bsd.prog.mk> |