Hello,

In OpenSSL's windows build system, when MINFO file has carriage-returns
- it breaks the whole Makefile creation (mk1mf.pl).

Similar reports could be seen here:
http://www.mail-archive.com/[email protected]/msg27400.html,
http://www.mail-archive.com/[email protected]/msg17449.html

It's not directly OpenSSL's fault, but I still believe that its build
scripts should support dos-formatted files as input, especially when the
patch is simple enough.

Cheers

Oren
--- openssl-1.0.0c/util/mk1mf.pl	2010-09-02 20:23:36.000000000 +0300
+++ openssl-1.0.0c/util/mk1mf.pl.new	2011-01-14 12:24:55.897916845 +0200
@@ -317,6 +317,7 @@
 for (;;)
 	{
 	chop;
+	s/\r//;
 
 	($key,$val)=/^([^=]+)=(.*)/;
 	if ($key eq "RELATIVE_DIRECTORY")

Reply via email to