forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Heimdal isn't really supported right now. Say so, and offer a possibi…
…lity to force the use of Heimdal, and warn if that's used. PR: 346
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -973,6 +973,17 @@ else | |
my ($lresolv, $lpath, $lext); | ||
if ($withargs{"krb5-flavor"} =~ /^[Hh]eimdal$/) | ||
{ | ||
die "Sorry, Heimdal is currently not supported\n"; | ||
} | ||
##### HACK to force use of Heimdal. | ||
##### WARNING: Since we don't really have adequate support for Heimdal, | ||
##### using this will break the build. You'll have to make | ||
##### changes to the source, and if you do, please send | ||
##### patches to [email protected] | ||
if ($withargs{"krb5-flavor"} =~ /^force-[Hh]eimdal$/) | ||
{ | ||
warn "Heimdal isn't really supported. Your build WILL break\n"; | ||
warn "If you fix the problems, please send a patch to [email protected]\n"; | ||
$withargs{"krb5-dir"} = "/usr/heimdal" | ||
if $withargs{"krb5-dir"} eq ""; | ||
$withargs{"krb5-lib"} = "-L".$withargs{"krb5-dir"}. | ||
|