From: "Baber Amin" <[EMAIL PROTECTED]>
BAMIN> I am trying to build the engine version (0.9.6c-engine) under win32
BAMIN> using VC6.x. It seems to be going fine till the compile for hw_aep.c,
BAMIN> which includes unistd.h. That seems to cause problems under win32.
Replace that inclusion line with the following and try it out:
#include <openssl/e_os.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <process.h>
typedef int pid_t;
#endif
BAMIN> Is the engine build not supported under win32, or just not protected
BAMIN> properly?
There weren't enough tests done, it appears, so this is a bug. It
will be fice in 0.9.6d, which I hope we'll release quite soon.
BAMIN> Should any of the code under crypto/engine be compiled if the "no_hw"
BAMIN> is turned on. It seems that inclusion of header files is not protected
BAMIN> by that flag in hw-aep.c and possibly other files. Is that on purpose?
Not quite. I'm restructuring that as we speak.
--
Richard Levitte \ Spannv�gen 38, II \ [EMAIL PROTECTED]
Redakteur@Stacken \ S-168 35 BROMMA \ T: +46-8-26 52 47
\ SWEDEN \ or +46-733-72 88 11
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, GemPlus: http://www.gemplus.com/
Unsolicited commercial email is subject to an archival fee of $400.
See <http://www.stacken.kth.se/~levitte/mail/> for more info.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]