mk1mf.mk created an nt_dbg.mak with invalid syntax.
A makefile fragment looked something like:
-----
T_OBJ=$(OBJ_D)\md2test.obj ...
E_OBJ
SSLOBJ=$(OBJ_D)\s2_meth.obj ...
-----
The equals was missing on E_OBJ. I traced the problem to
subroutine "do_defs" in mk1mf.pl. The pertinent code is:
sub do_defs
{
...
ret="$var=";
...
chop($ret)
...
return($ret);
}
The fix is:
s/chop/chomp/
This change fixed the problem for me
The same exists in 0.9.8a mk1mf.pl
Thanks,
-Steve Sonntag
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [email protected]
Automated List Manager [EMAIL PROTECTED]