Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 389347 - net-mail/fetchmail-6.3.21 fails to correctly detect >=app-crypt/heimdal-1.4
Summary: net-mail/fetchmail-6.3.21 fails to correctly detect >=app-crypt/heimdal-1.4
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Net-Mail Packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 389343
  Show dependency tree
 
Reported: 2011-11-02 17:34 UTC by Rafał Mużyło
Modified: 2011-11-06 20:14 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rafał Mużyło 2011-11-02 17:34:06 UTC
The check for heimdal is outdated.
The problem is twofolds:
- at some point, heimdal started to provide /usr/include/gssapi.h, instead of just /usr/include/gssapi/gssapi.h
- the other part is bug 389343

It seems that turning 
'AC_EGREP_HEADER(GSS_C_NT_HOSTBASED_SERVICE, gssapi.h,'
into:
'AC_EGREP_CPP(hostbased_service_gss_nt_yes, gssapi.h,
[#include <gssapi.h>
 #ifdef GSS_C_NT_HOSTBASED_SERVICE
   hostbased_service_gss_nt_yes
 #endif],'

will fix the problem.
Comment 1 Eray Aslan gentoo-dev 2011-11-06 20:14:14 UTC
+  06 Nov 2011; Eray Aslan <eras@gentoo.org> fetchmail-6.3.21.ebuild,
+  +files/fetchmail-gss_c_nt_hostbased_service.patch:
+  Fix compiling against >=heimdal-1.4 - bug #389347. Thanks to Rafał Mużyło.
+

Thanks for the bug report.