1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/sysutils/mprocs/files/extra-patch-src_Cargo.toml
Piotr Kubaj 5a186662c8 sysutils/mprocs: fix build on powerpc*
Similarly to misc/xplr, use the luajit from ports, since:
1. Only openresty fork supports 64-bit PPC.
2. All the luajit ports need to built with GCC.
2022-11-14 01:35:23 +01:00

12 lines
540 B
TOML

--- src/Cargo.toml.orig 2022-11-12 22:57:03 UTC
+++ src/Cargo.toml
@@ -43,7 +43,7 @@ indexmap = { version = "1.8.0", features = ["serde"] }
lazy_static = "1.4.0"
libc = "0.2.120"
log = "0.4.14"
-mlua = { version = "0.8.3", features = ["luajit52", "vendored", "serialize"] }
+mlua = { version = "0.8.3", features = ["luajit52", "serialize"] }
phf = { version = "0.10.1", features = ["macros"] }
portable-pty = { package = "mprocs-pty", path = "../vendor/pty", version = "0.1.0" }
serde = { version = "1.0.136", features = ["derive"] }