Skip to content

Commit

Permalink
Heimdal isn't really supported right now. Say so, and offer a possibi…
Browse files Browse the repository at this point in the history
…lity

to force the use of Heimdal, and warn if that's used.
PR: 346
  • Loading branch information
levitte committed Nov 26, 2002
1 parent 91203a9 commit b81ef84
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -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"}.
Expand Down

0 comments on commit b81ef84

Please sign in to comment.