summaryrefslogtreecommitdiff
path: root/Mk/Uses/cargo.mk
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2019-07-18 08:18:05 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2019-07-18 08:18:05 +0000
commit7e5e3b9071fbfaa290b4f99996f4d88036b2bda7 (patch)
tree9ac705bbdc69d2adb0fec49ab6b92bff961a2c28 /Mk/Uses/cargo.mk
parentFix typo (diff)
www/geckodriver: Bump libc crate version again
$ make check-sanity /!\ geckodriver-0.24.0: Makefile warnings, please consider fixing /!\ CARGO_CRATES=libc-0.2.43 may be unstable on aarch64 or not build on armv6, armv7, powerpc64. Consider updating to the latest version (higher than 0.2.49). This will give it at least a chance to build on tier 2 archs. We bumped libc earlier but this was regressed on in r506813. The libc warnings in USES=cargo do not seem to be enough. Make them errors instead. With hat: rust
Notes
Notes: svn path=/head/; revision=506841
Diffstat (limited to 'Mk/Uses/cargo.mk')
-rw-r--r--Mk/Uses/cargo.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/cargo.mk b/Mk/Uses/cargo.mk
index b000545e1163..9c4ccf98a552 100644
--- a/Mk/Uses/cargo.mk
+++ b/Mk/Uses/cargo.mk
@@ -139,10 +139,10 @@ CARGO_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \
# https://github.com/rust-lang/libc/commit/969ad2b73cdc
_libc_VER= ${libc:C/.*-//}
. if ${_libc_VER:R:R} == 0 && (${_libc_VER:R:E} < 2 || ${_libc_VER:R:E} == 2 && ${_libc_VER:E} < 38)
-DEV_WARNING+= "CARGO_CRATES=${libc} may be unstable on FreeBSD 12.0. Consider updating to the latest version (higher than 0.2.37)."
+DEV_ERROR+= "CARGO_CRATES=${libc} may be unstable on FreeBSD 12.0. Consider updating to the latest version \(higher than 0.2.37\)."
. endif
. if ${_libc_VER:R:R} == 0 && (${_libc_VER:R:E} < 2 || ${_libc_VER:R:E} == 2 && ${_libc_VER:E} < 49)
-DEV_WARNING+= "CARGO_CRATES=${libc} may be unstable on aarch64 or not build on armv6, armv7, powerpc64. Consider updating to the latest version (higher than 0.2.49)."
+DEV_ERROR+= "CARGO_CRATES=${libc} may be unstable on aarch64 or not build on armv6, armv7, powerpc64. Consider updating to the latest version \(higher than 0.2.49\)."
. endif
.undef _libc_VER
.endfor