mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
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
This commit is contained in:
parent
f22e50df12
commit
77630214c4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=468557
@ -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=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS
|
||||
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''
|
||||
|
30
mail/fetchmail/files/patch-configure
Normal file
30
mail/fetchmail/files/patch-configure
Normal file
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user