diff options
author | Cy Schubert <cy@FreeBSD.org> | 2018-04-28 17:49:37 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2018-04-28 17:49:37 +0000 |
commit | 77630214c4107b066dddb51b4afb1687fa664772 (patch) | |
tree | 997bf1e03ef8439cd76b446763fb6ff86a80be08 /mail/fetchmail/files/patch-configure | |
parent | - Update to r591 (diff) |
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
Notes
Notes:
svn path=/head/; revision=468557
Diffstat (limited to 'mail/fetchmail/files/patch-configure')
-rw-r--r-- | mail/fetchmail/files/patch-configure | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mail/fetchmail/files/patch-configure b/mail/fetchmail/files/patch-configure new file mode 100644 index 000000000000..16336221ff4e --- /dev/null +++ b/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; + } |