Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Nov 2020 18:07:17 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 251064] [NEW PORT] textproc/cast2gif: Tool to render Asciinema cast files to GIFs
Message-ID:  <bug-251064-7788-VzOJbpjIIF@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-251064-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-251064-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D251064

Mikael Urankar <mikael@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikael@FreeBSD.org

--- Comment #9 from Mikael Urankar <mikael@FreeBSD.org> ---
make is too old on 11.4 and AFAIU is not "jobserver" compatible:
https://github.com/rust-lang/rust/pull/42682#issue-125886139

On 11.4, you can install gmake and patch
cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo:

--- ./cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo.orig=20=20=20=
=20=20=20
2020-11-29 19:04:42.745374000 +0100
+++ ./cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo    2020-11-29
19:02:38.491280000 +0100
@@ -58,7 +58,7 @@ SRC_DIR =3D $(shell pwd)
 all: $(OUT_DIR)/libfontconfig.a

 $(OUT_DIR)/libfontconfig.a: $(OUT_DIR)/Makefile
-       cd $(OUT_DIR) && make -j$(NUM_JOBS)
+       cd $(OUT_DIR) && gmake -j$(NUM_JOBS)
        cp $(OUT_DIR)/src/.libs/libfontconfig.a $(OUT_DIR)

 EXPAT_INCLUDE_DIR ?=3D $(DEP_EXPAT_OUTDIR)/include



--- ./cargo-crates/servo-fontconfig-sys-4.0.9/build.rs.orig     2020-11-29
19:06:19.604660000 +0100
+++ ./cargo-crates/servo-fontconfig-sys-4.0.9/build.rs  2020-11-29
19:06:26.037062000 +0100
@@ -17,7 +17,7 @@ fn main() {
         }
     }

-    assert!(Command::new("make")
+    assert!(Command::new("gmake")
         .env("MAKEFLAGS", env::var("CARGO_MAKEFLAGS").unwrap_or_default())
         .args(&["-R", "-f", "makefile.cargo"])
         .status()

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-251064-7788-VzOJbpjIIF>