Hi,

The links in the tar.gz package do not work under Windows Vista. At
least 7zip and filzip cannot handle links, cygwin extracts the links as
lnk files.
But lnk files seem to bring problems to the Visual Studio (C++ Express)
compiler. It cannot follow them.

I had to do execute this bash script in the include/openssl folder to
replace the includes links with the real files:

for file in *; do if test -L $file; then cat $file > $file.temp; rm
$file; mv $file.temp $file; fi;done

WBR,
Karsten

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

Reply via email to