aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-02-19 23:42:09 +0000
committerUlf Möller <ulf@openssl.org>2001-02-19 23:42:09 +0000
commit7bd51947e503aa0e943f60558445b2be3d0ad40c (patch)
tree1409329fbb5d95af1831d3c0ab6cc9c2e02ab00a
parent4901b4165374ec6503bdcf8b5454549b596c5637 (diff)
downloadopenssl-7bd51947e503aa0e943f60558445b2be3d0ad40c.tar.gz
Temporary fix for build break.
It's still inconsistent - probably better to undo the whole OPENSSL_NO_* thing.
-rwxr-xr-xConfigure1
-rw-r--r--ssl/kssl.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/Configure b/Configure
index 39d98d7295..5bbfe5113c 100755
--- a/Configure
+++ b/Configure
@@ -693,6 +693,7 @@ if ($no_krb5
$cflags="-DOPENSSL_NO_KRB5 $cflags";
$options.=" no-krb5" unless $no_krb5;
$openssl_algorithm_defines .= "#define OPENSSL_NO_KRB5\n";
+ $openssl_algorithm_defines .= "#define NO_KRB5\n";
}
else
{
diff --git a/ssl/kssl.c b/ssl/kssl.c
index fe7f4ebe5e..38ba725373 100644
--- a/ssl/kssl.c
+++ b/ssl/kssl.c
@@ -61,6 +61,7 @@
** 19990701 VRS Started.
*/
+#include <openssl/opensslconf.h>
#ifndef NO_KRB5
#include <string.h>
#include <openssl/ssl.h>