Comparing builds
Opam packages with changes in their opam file
conf-libssl.4 (and additional changes)
build instruction (without common prefix) modifications, old:
["pkg-config" "--print-errors" "--exists" "openssl"]
{os != "freebsd" & os != "openbsd" & os != "netbsd" &
os-distribution != "homebrew"}
["sh" "-ex" "./homebrew.sh" "check"] {os-distribution = "homebrew"}
new
[
"pkgconf" {os = "win32" & os-distribution = "cygwin"}
"--personality=i686-w64-mingw32"
{os = "win32" & os-distribution = "cygwin" & host-arch-x86_32:installed}
"--personality=x86_64-w64-mingw32"
{os = "win32" & os-distribution = "cygwin" & host-arch-x86_64:installed}
"pkg-config" {os != "win32" | os-distribution != "cygwin"}
"--print-errors"
"--exists"
"openssl"
]
{os != "freebsd" & os != "openbsd" & os != "netbsd" &
os-distribution != "homebrew"}
["sh" "-ex" "./homebrew.sh" "check"] {os-distribution = "homebrew"}