diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-07-18 16:18:05 +0800 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-07-18 16:18:05 +0800 |
commit | 7e5e3b9071fbfaa290b4f99996f4d88036b2bda7 (patch) | |
tree | 9ac705bbdc69d2adb0fec49ab6b92bff961a2c28 /Mk/Uses | |
parent | bcde1a4f0ba2652c5802345091833231f1005acd (diff) | |
download | freebsd-ports-gnome-7e5e3b9071fbfaa290b4f99996f4d88036b2bda7.tar.gz freebsd-ports-gnome-7e5e3b9071fbfaa290b4f99996f4d88036b2bda7.tar.zst freebsd-ports-gnome-7e5e3b9071fbfaa290b4f99996f4d88036b2bda7.zip |
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
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/cargo.mk | 4 |
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 |