Bug 98224
| Summary: | ssl.h includes krb5.h which is not in the standard include path | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Martin Norback <d95mback> |
| Component: | openssl | Assignee: | Nalin Dahyabhai <nalin> |
| Status: | CLOSED DUPLICATE | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 9 | CC: | jorton |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2006-02-21 18:56:54 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
*** This bug has been marked as a duplicate of 82369 *** Changed to 'CLOSED' state since 'RESOLVED' has been deprecated. |
From Bugzilla Helper: User-Agent: Mozilla/5.0 Galeon/1.2.7 (X11; Linux i686; U;) Gecko/20030131 Description of problem: If I include openssl/ssl.h I get the following error message: In file included from /usr/include/openssl/ssl.h:179, /usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory krb5.h is installed, but not in a standard place it is in /usr/kerberos/include I am not particulary interested in kerberos, I only want openssl so I really shouldn't need to add an extra -I/usr/kerberos/include to my program (how will an openssl program know that it needs to do that?) The fix I did on my system was to #define OPENSSL_NO_KRB5 on top of ssl.h, this is not a very pretty solution. Version-Release number of selected component (if applicable): openssl-devel-0.9.7a-11 How reproducible: Always Steps to Reproduce: 1. #include <openssl.h> 2. 3. Actual Results: In file included from /usr/include/openssl/ssl.h:179, /usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory Additional info: