Initial commit

This commit is contained in:
2026-03-21 12:43:00 -05:00
commit 83bf16823c
438 changed files with 33617 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
[build]
type = "autotools"
[build.flags]
configure = [
"--with-pic",
"--disable-static",
]
skip-tests = true
make-install-vars = [ "htmldir=/usr/share/doc/ffcall" ]
[dependencies]
runtime = ["glibc"]
[package]
description = "C library for implementing foreign function calls in embedded interpreters"
homepage = "https://www.gnu.org/software/libffcall/"
license = "GPL-2.0-or-later"
name = "ffcall"
version = "2.5"
[[source]]
extract_dir = "$name-$version"
url = "https://mirrors.kernel.org/gnu/libffcall/libffcall-$version.tar.gz"
sha256 = "b2:552a0a33bbed91380ced4bdb0f87f38be0a531e729b9530d80dd777ce93b4fe3515a984c2da0221e0110756fbbc099d666b1fed6f5cfacfccbedda7f97e58054"
patches = [ "libffcall-2.5-parallel-make-race.patch" ]
[[manual_sources]]
file = "libffcall-2.5-parallel-make-race.patch"
sha256 = "b2:094d442a4678e8f712ecbe4dcabe15440b7e3be6f4715593c71937269045835c1dd08cdd18992efd9d2b8ecbf0a95cbc9b20b1e8d1377888d5c45640ff3480ab"
@@ -0,0 +1,25 @@
diff --git a/Makefile.in b/Makefile.in
index 5f5b496..5865660 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -233,3 +233,7 @@ dist : force
force :
+# This Makefile contains rules which don't work with parallel make.
+# See <https://savannah.gnu.org/bugs/?66220>.
+# So, turn off parallel execution in this Makefile.
+.NOTPARALLEL:
diff --git a/callback/Makefile.in b/callback/Makefile.in
index d453d6b..64908e8 100644
--- a/callback/Makefile.in
+++ b/callback/Makefile.in
@@ -234,3 +234,8 @@ distdir : $(DISTFILES)
force :
+
+# This Makefile contains rules which don't work with parallel make.
+# See <https://savannah.gnu.org/bugs/?66220>.
+# So, turn off parallel execution in this Makefile.
+.NOTPARALLEL: