diff options
author | jfieber <jfieber@FreeBSD.org> | 1998-09-14 05:31:51 +0800 |
---|---|---|
committer | jfieber <jfieber@FreeBSD.org> | 1998-09-14 05:31:51 +0800 |
commit | cfcbfd45b1051dde90142a27f00ce4b2660849f1 (patch) | |
tree | e0fe7faf11f8c7ea190ca953c77e2ce1047da65c /mail/fetchmail | |
parent | 42d7472f15f031344b8935b1635b2b49e1a09d99 (diff) | |
download | freebsd-ports-gnome-cfcbfd45b1051dde90142a27f00ce4b2660849f1.tar.gz freebsd-ports-gnome-cfcbfd45b1051dde90142a27f00ce4b2660849f1.tar.zst freebsd-ports-gnome-cfcbfd45b1051dde90142a27f00ce4b2660849f1.zip |
The fetchmail config script will automagically use Kerberos V5 if found.
This patch helps it find Kerberos V5 if you installed the port in a
non-standard place.
Reviewed by: Ville Eerola <Ville.Eerola@sci.fi>
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 056a38e8a7e2..300c6de24d77 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Oct 1996 # Whom: Ville Eerola <ve@sci.fi> # -# $Id: Makefile,v 1.65 1998/07/20 03:39:29 steve Exp $ +# $Id: Makefile,v 1.66 1998/08/17 00:11:27 steve Exp $ # # NOTE: The fetchmailconf program (an interactive program for # writing .fetchmailrc files) requires Python, found in the Ports @@ -26,6 +26,10 @@ MAN1= fetchmail.1 CONFIGURE_ARGS += --with-kerberos=/usr/include .endif +.if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libkrb5.a) +CONFIGURE_ARGS += --with-kerberos5=${KRB5_HOME} +.endif + FDOC= ${PREFIX}/share/doc/fetchmail post-patch: |