From aad64940a6d0c3f32f64f13dda45b73725d65081 Mon Sep 17 00:00:00 2001 From: Alexander M Pickering Date: Tue, 5 Nov 2024 14:12:06 -0600 Subject: Add tls.h to exports --- init | 2 ++ meta.lua | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/init b/init index 8e33afd..f799343 100755 --- a/init +++ b/init @@ -7,6 +7,7 @@ cd portable ./autogen.sh CC=gcc ./configure --host=x86_64-w64-mingw32 make +tar -caf include.tar.xz include/tls.h cp tls/.libs/libtls.a /root cp ssl/.libs/libbs.a /root cp ssl/.libs/libssl.a /root @@ -14,4 +15,5 @@ cp crypto/.libs/libcompat.a /root cp crypto/.libs/libcompatnoopt.a /root cp crypto/.libs/libcrypto.a /root cp apps/openssl/openssl.exe /root +cp include.tar.xz /root diff --git a/meta.lua b/meta.lua index 596f0b0..4616fa8 100644 --- a/meta.lua +++ b/meta.lua @@ -24,7 +24,7 @@ for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, deb builds["libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { image="libressl-meta", requires = { - {"git", "portable"}, + {"git", "portable#v4.0.0"}, }, produces = { ["libssl.a"] = true, @@ -34,6 +34,7 @@ for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, deb ["libcompatnoopt.a"] = true, ["libcrypto.a"] = true, ["openssl.exe"] = true, + ["include.tar.gz"] = true }, timeout = 600, --Jeez this takes forever env = { -- cgit v1.2.3-55-g6feb