> And the mingw build is broken anyway.

For the record, originally mingw was supported by itself, i.e. under
MSYS, and under cygwin (which is why you'll notice -mno-cygwin). Then is
was empirically confirmed that it works even with cross-compiler under
Linux. But it more than likely happened with 1.0, so that assuming that
0.9.8 would work was in fact a stretch.

> Is this something worth fixing in a future
> 0.9.8 release?

I'd vote against.

> Otherwise the mingw builds could be simply removed from travis
> for 0.9.8.
> 
> Other builds failing are:
> 
> - linux-gcc and mingw debug builds in 1.0.2 (I haven't tried to reproduce
>   these yet).

No comment at this point.

> - mingw debug and shared builds in master.

While I can confirm problem with shared (fixable with attached patch,
please double-check), I can't confirm problem with debug (please elaborate).

diff --git a/util/mkrc.pl b/util/mkrc.pl
index 83ee6a4..b61d73d 100755
--- a/util/mkrc.pl
+++ b/util/mkrc.pl
@@ -1,6 +1,6 @@
 #!/bin/env perl
 #
-open FD,"crypto/opensslv.h";
+open FD,"include/openssl/opensslv.h";
 while(<FD>) {
     if (/OPENSSL_VERSION_NUMBER\s+(0x[0-9a-f]+)/i) {
 	$ver = hex($1);
_______________________________________________
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to