In test/md2test.c there is a little problem.
The line :
#include <openssl/md2.h>

should be in the else side of #ifdef OPENSSL_NO_MD2, otherwise the make
would stop with and error.

The openSSL version is 0.9.7b 
Here How I fixed ( I know, it's simple, but should work )

--- openssl-0.9.7b/crypto/md2/md2test.c Wed Feb 19 12:22:18 2003
+++ openssl_patched/crypto/md2/md2test.c        Sat Sep 27 12:10:57 2003
@@ -59,7 +59,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <openssl/md2.h>
 
 #include "../e_os.h"
 
@@ -70,6 +69,7 @@
     return(0);
 }
 #else
+#include <openssl/md2.h>
 #include <openssl/evp.h>
 
 #ifdef CHARSET_EBCDIC
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to