diff options
author | lha <lha@pkgsrc.org> | 2003-05-09 14:07:29 +0000 |
---|---|---|
committer | lha <lha@pkgsrc.org> | 2003-05-09 14:07:29 +0000 |
commit | f86d6f3eaf3d217fd360d1b4ebbef41f51964b66 (patch) | |
tree | 3ca6a8aa9986d8ef2499d6d146ce99e7ae3381ab /mail/nmh | |
parent | e2a378e09de9148ff2eb4a497073702f357de02a (diff) | |
download | pkgsrc-f86d6f3eaf3d217fd360d1b4ebbef41f51964b66.tar.gz |
Make work with netbsd libkrb that might require roken and com_err
Fixes PR: pkg/21505
Diffstat (limited to 'mail/nmh')
-rw-r--r-- | mail/nmh/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index d3acf062c2d..21dbf97666e 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2002/10/30 16:57:02 kim Exp $ +# $NetBSD: Makefile,v 1.50 2003/05/09 14:07:29 lha Exp $ # FreeBSD Id: Makefile,v 1.2 1997/08/04 06:51:28 markm Exp # @@ -42,6 +42,9 @@ CONFIGURE_ARGS+= --with-pager=${NMH_PAGER} .if defined(KERBEROS) PKG_USE_KERBEROS= # defined +.if ${OPSYS} == "NetBSD" +LIBS= -lroken -lcrypt -lcom_err +.endif CONFIGURE_ARGS+= --with-krb4 .else CONFIGURE_ARGS+= --without-krb4 |