svn commit: r468557 - in head/mail/fetchmail: . files
Cy Schubert
cy at FreeBSD.org
Sat Apr 28 17:49:38 UTC 2018
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 at 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;
+ }
More information about the svn-ports-all
mailing list