this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add depexts for conf-gcc for mingw-w64

+38 -2
+15
packages/conf-mingw-w64-gcc-i686/conf-mingw-w64-gcc-i686.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Virtual package for GCC on i686 mingw-w64 (32-bit x86)" 3 + description: "Ensures the i686 version of GCC from the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + authors: "David Allsopp" 6 + license: "GPL-3.0-or-later" 7 + homepage: "https://www.mingw-w64.org" 8 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 + flags: conf 10 + available: os = "win32" 11 + build: ["i686-w64-mingw32-gcc" "--version"] 12 + depexts: [ 13 + ["mingw64-i686-gcc-core"] {os = "win32" & os-distribution = "cygwin"} 14 + ["mingw-w64-i686-gcc"] {os = "win32" & os-distribution = "msys2"} 15 + ]
+15
packages/conf-mingw-w64-gcc-x86_64/conf-mingw-w64-gcc-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Virtual package for GCC on x86_64 mingw-w64 (64-bit x86_64)" 3 + description: "Ensures the x86_64 version of GCC from the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + authors: "David Allsopp" 6 + license: "GPL-3.0-or-later" 7 + homepage: "https://www.mingw-w64.org" 8 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 + flags: conf 10 + available: os = "win32" 11 + build: ["x86_64-w64-mingw32-gcc" "--version"] 12 + depexts: [ 13 + ["mingw64-x86_64-gcc-core"] {os = "win32" & os-distribution = "cygwin"} 14 + ["mingw-w64-x86_64-gcc"] {os = "win32" & os-distribution = "msys2"} 15 + ]
+4 -1
packages/conf-mingw-w64-zstd-i686/conf-mingw-w64-zstd-i686.1/opam
··· 9 9 flags: conf 10 10 available: os = "win32" 11 11 build: ["pkgconf" "--personality=i686-w64-mingw32" {os-distribution = "cygwin"} "libzstd"] 12 - depends: ["conf-pkg-config" {build}] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-i686" {build} 15 + ] 13 16 depexts: [ 14 17 ["mingw64-i686-zstd"] {os = "win32" & os-distribution = "cygwin"} 15 18 ["mingw-w64-i686-zstd"] {os = "win32" & os-distribution = "msys2"}
+4 -1
packages/conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam
··· 9 9 flags: conf 10 10 available: os = "win32" 11 11 build: ["pkgconf" "--personality=x86_64-w64-mingw32" {os-distribution = "cygwin"} "libzstd"] 12 - depends: ["conf-pkg-config" {build}] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-x86_64" {build} 15 + ] 13 16 depexts: [ 14 17 ["mingw64-x86_64-zstd"] {os = "win32" & os-distribution = "cygwin"} 15 18 ["mingw-w64-x86_64-zstd"] {os = "win32" & os-distribution = "msys2"}