Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Apr 2018 17:49:37 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r468557 - in head/mail/fetchmail: . files
Message-ID:  <201804281749.w3SHnbt3069981@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Sat Apr 28 17:49:37 2018
New Revision: 468557
URL: https://svnweb.freebsd.org/changeset/ports/468557

Log:
  Correctly link to MIT KRB5 libraries when selected.
  
  This was discovered while working through issues relating to an
  exp-run using base with private Heimdal, part of the project to
  make a) Heimdal in base private and b) import MIT into base (PR 222745).
  
  PR:		227680
  Submitted by:	cy@
  Approved by:	Corey Halpin <chalpin@cs.wisc.edu> (maintainer)
  MFH:		2018Q2

Added:
  head/mail/fetchmail/files/patch-configure   (contents, props changed)
Modified:
  head/mail/fetchmail/Makefile   (contents, props changed)

Modified: head/mail/fetchmail/Makefile
==============================================================================
--- head/mail/fetchmail/Makefile	Sat Apr 28 16:48:50 2018	(r468556)
+++ head/mail/fetchmail/Makefile	Sat Apr 28 17:49:37 2018	(r468557)
@@ -3,7 +3,7 @@
 
 PORTNAME=	fetchmail
 PORTVERSION=	6.3.26
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	mail ipv6
 MASTER_SITES=	SF/${PORTNAME}/branch_6.3/ \
 		http://mandree.home.pages.de/${PORTNAME}/
@@ -46,7 +46,7 @@ GSSAPI_BASE_CONFIGURE_ON=	--with-gssapi=${GSSAPIBASEDI
 GSSAPI_HEIMDAL_USES=	gssapi:heimdal
 GSSAPI_HEIMDAL_CONFIGURE_ON=	--with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
 GSSAPI_MIT_USES=	gssapi:mit
-GSSAPI_MIT_CONFIGURE_ON=	--with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
+GSSAPI_MIT_CONFIGURE_ON=	--with-kerberos5=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
 GSSAPI_NONE_CONFIGURE_ON=	--without-gssapi
 
 X11_DESC=	Python/Tkinter dependencies for ``fetchmailconf''

Added: head/mail/fetchmail/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/fetchmail/files/patch-configure	Sat Apr 28 17:49:37 2018	(r468557)
@@ -0,0 +1,30 @@
+--- configure.orig	2013-04-23 14:36:55.000000000 -0700
++++ configure	2018-04-21 22:45:30.073773000 -0700
+@@ -9552,11 +9552,11 @@
+ #ifdef __cplusplus
+ extern "C"
+ #endif
+-char krb5_des_string_to_key ();
++char krb5int_des_string_to_key ();
+ int
+ main ()
+ {
+-return krb5_des_string_to_key ();
++return krb5int_des_string_to_key ();
+   ;
+   return 0;
+ }
+@@ -9591,11 +9591,11 @@
+ #ifdef __cplusplus
+ extern "C"
+ #endif
+-char krb5_des_string_to_key ();
++char krb5int_des_string_to_key ();
+ int
+ main ()
+ {
+-return krb5_des_string_to_key ();
++return krb5int_des_string_to_key ();
+   ;
+   return 0;
+ }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804281749.w3SHnbt3069981>