Greetings,
System and version:
OpenSSL 0.9.7c
Type:
Building, Configuration Error
Description:
When doing a make of OpenSSL with HMAC configured off (no-hmac) the code in
ssl/t1_enc.c appears to incorrectly include openssl/hmac.h. This causes
the make to abort.
To duplicate this problem do:
./config no-idea no-bf no-cast no-hmac no-threads -fPIC
make depend
make
Suggested fix:
At line 116 the line:
#include <openssl/hmac.h>
should be wrapped in an ifndef OPENSSL_NO_HMAC
like this:
#ifndef OPENSSL_NO_HMAC
#include <openssl/hmac.h>
#endif
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]