From: Dr. Stephen Henson Date: Thu, 21 Apr 2005 00:42:55 +0000 (+0000) Subject: Don't use kerberos library locations on windows. X-Git-Tag: BEN_FIPS_TEST_8~69 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4f6c2bacb10364e841545e2ab742134dfb5da832;p=oweals%2Fopenssl.git Don't use kerberos library locations on windows. --- diff --git a/Configure b/Configure index 9407acceb5..b0a7a4b8da 100755 --- a/Configure +++ b/Configure @@ -1028,7 +1028,7 @@ else if $withargs{"krb5-dir"} eq ""; $withargs{"krb5-lib"} = "-L".$withargs{"krb5-dir"}. "/lib -lgssapi -lkrb5 -lcom_err" - if $withargs{"krb5-lib"} eq ""; + if $withargs{"krb5-lib"} eq "" && !$IsWindows; $cflags="-DKRB5_HEIMDAL $cflags"; } if ($withargs{"krb5-flavor"} =~ /^[Mm][Ii][Tt]/) @@ -1037,7 +1037,7 @@ else if $withargs{"krb5-dir"} eq ""; $withargs{"krb5-lib"} = "-L".$withargs{"krb5-dir"}. "/lib -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto" - if $withargs{"krb5-lib"} eq ""; + if $withargs{"krb5-lib"} eq "" && !$IsWindows; $cflags="-DKRB5_MIT $cflags"; $withargs{"krb5-flavor"} =~ s/^[Mm][Ii][Tt][._-]*//; if ($withargs{"krb5-flavor"} =~ /^1[._-]*[01]/)