forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#26072 from dra27/windows-conf-libssl
Update conf-libssl for the mingw-w64 ports
- Loading branch information
Showing
6 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
packages/conf-mingw-w64-openssl-i686/conf-mingw-w64-openssl-i686.1/opam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
opam-version: "2.0" | ||
synopsis: "libssl for i686 mingw-w64 (32-bit x86)" | ||
description: "Ensures the i686 version of libssl for the mingw-w64 project is available" | ||
maintainer: "David Allsopp <david@tarides.com>" | ||
authors: "The OpenSSL Project" | ||
license: "Apache-1.0" | ||
homepage: "https://www.openssl.org" | ||
bug-reports: "https://github.com/ocaml/opam-repository/issues" | ||
flags: conf | ||
available: os = "win32" & os-distribution = "cygwin" | ||
build: ["pkgconf" "--personality=i686-w64-mingw32" "openssl"] | ||
depends: [ | ||
"conf-pkg-config" {build} | ||
"conf-mingw-w64-gcc-i686" {build} | ||
] | ||
depexts: [ | ||
["mingw64-i686-openssl"] {os = "win32" & os-distribution = "cygwin"} | ||
["mingw-w64-i686-openssl"] {os = "win32" & os-distribution = "msys2"} | ||
] |
19 changes: 19 additions & 0 deletions
19
packages/conf-mingw-w64-openssl-x86_64/conf-mingw-w64-openssl-x86_64.1/opam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
opam-version: "2.0" | ||
synopsis: "libssl for x86_64 mingw-w64 (64-bit x86_64)" | ||
description: "Ensures the x86_64 version of libssl for the mingw-w64 project is available" | ||
maintainer: "David Allsopp <david@tarides.com>" | ||
authors: "The OpenSSL Project" | ||
license: "Apache-1.0" | ||
homepage: "https://www.openssl.org" | ||
bug-reports: "https://github.com/ocaml/opam-repository/issues" | ||
flags: conf | ||
available: os = "win32" & os-distribution = "cygwin" | ||
build: ["pkgconf" "--personality=x86_64-w64-mingw32" "openssl"] | ||
depends: [ | ||
"conf-pkg-config" {build} | ||
"conf-mingw-w64-gcc-x86_64" {build} | ||
] | ||
depexts: [ | ||
["mingw64-x86_64-openssl"] {os = "win32" & os-distribution = "cygwin"} | ||
["mingw-w64-x86_64-openssl"] {os = "win32" & os-distribution = "msys2"} | ||
] |