Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-20 01:10:20 +0300
committerRichard Levitte <levitte@openssl.org>2002-12-20 01:10:20 +0300
commite286dfe6edc23fd189e6ee8370440cd79b551961 (patch)
treec683722f30d899d53799ec06f989bc0576701cff /Configure
parent17e3b273e6ac97ce743e74c749e611649f51de1e (diff)
We stupidly had a separate LIBKRB5 variable for KRB5 library dependencies,
and then didn't support it very well. And that when there already is a useful variable for exactly this kind of thing; EX_LIBS...
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/Configure b/Configure
index 11d20e029e..9b99b0436e 100755
--- a/Configure
+++ b/Configure
@@ -1020,6 +1020,8 @@ else
$withargs{"krb5-include"} = "-I".$withargs{"krb5-dir"}."/include"
if $withargs{"krb5-include"} eq "" &&
$withargs{"krb5-dir"} ne "";
+
+ $libs.=$withargs{"krb5-lib"}." " if $withargs{"krb5-lib"} ne "";
}
# The DSO code currently always implements all functions so that no
@@ -1238,7 +1240,6 @@ while (<IN>)
s/^ARFLAGS=.*/ARFLAGS= $arflags/;
s/^PERL=.*/PERL= $perl/;
s/^KRB5_INCLUDES=.*/KRB5_INCLUDES=$withargs{"krb5-include"}/;
- s/^LIBKRB5=.*/LIBKRB5=$withargs{"krb5-lib"}/;
s/^SHLIB_TARGET=.*/SHLIB_TARGET=$shared_target/;
s/^SHLIB_MARK=.*/SHLIB_MARK=$shared_mark/;
s/^SHARED_LIBS=.*/SHARED_LIBS=\$(SHARED_CRYPTO) \$(SHARED_SSL)/ if (!$no_shared);
@@ -1286,8 +1287,6 @@ print "ARFLAGS =$arflags\n";
print "PERL =$perl\n";
print "KRB5_INCLUDES =",$withargs{"krb5-include"},"\n"
if $withargs{"krb5-include"} ne "";
-print "LIBKRB5 =",$withargs{"krb5-lib"},"\n"
- if $withargs{"krb5-lib"} ne "";
my $des_ptr=0;
my $des_risc1=0;