Compiled on Windows NT4 SP6 with VC++ 6.0 SP4.
Problems when using the NO_DSA switch.

link /nologo /subsystem:console /machine:I386 /opt:ref
/out:out32MTmin\openssl.exe @C:\TEMP\nma00149.
x509.obj : error LNK2001: unresolved external symbol _EVP_dss1
out32MTmin\openssl.exe : fatal error LNK1120: 1 unresolved externals
NMAKE : fatal error U1077: 'link' : return code '0x460'
Stop.

Change lines 870-701:
if (pk->type == EVP_PKEY_DSA)
  digest=EVP_dss1();

to:

#ifndef NO_DSA
  if (pk->type == EVP_PKEY_DSA)
    digest=EVP_dss1();
#endif


Med venlig hilsen / Best regards

Kim Hellan
KMD / KMD-CA
http://www.kmd-ca.dk
Mailto:[EMAIL PROTECTED]

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to