Date: Mon, 30 Apr 2018 19:21:52 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r468741 - in branches/2018Q2/mail/fetchmail: . files Message-ID: <201804301921.w3UJLqF2078152@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Mon Apr 30 19:21:52 2018 New Revision: 468741 URL: https://svnweb.freebsd.org/changeset/ports/468741 Log: MFH: r468557 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) Approved by: portmgr (riggs) Added: branches/2018Q2/mail/fetchmail/files/patch-configure - copied unchanged from r468557, head/mail/fetchmail/files/patch-configure Modified: branches/2018Q2/mail/fetchmail/Makefile Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/mail/fetchmail/Makefile ============================================================================== --- branches/2018Q2/mail/fetchmail/Makefile Mon Apr 30 19:19:35 2018 (r468740) +++ branches/2018Q2/mail/fetchmail/Makefile Mon Apr 30 19:21:52 2018 (r468741) @@ -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'' Copied: branches/2018Q2/mail/fetchmail/files/patch-configure (from r468557, head/mail/fetchmail/files/patch-configure) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q2/mail/fetchmail/files/patch-configure Mon Apr 30 19:21:52 2018 (r468741, copy of r468557, head/mail/fetchmail/files/patch-configure) @@ -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?201804301921.w3UJLqF2078152>