logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git
commit: e8db0dee22d2c8929661c35cc5825684ccc1ca23
parent a87a386e3a5ef715fc65affe9dfa9eae09d13270
Author: Michael Forney <mforney@mforney.org>
Date:   Fri,  5 Jul 2019 14:22:02 -0700

Add C version of libutp

Diffstat:

M.gitmodules3+++
Mpkg/gen.lua1+
Apkg/libutp/gen.lua9+++++++++
Apkg/libutp/src1+
Apkg/libutp/ver1+
5 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/.gitmodules b/.gitmodules @@ -120,6 +120,9 @@ [submodule "pkg/libpng/src"] path = pkg/libpng/src url = https://github.com/glennrp/libpng +[submodule "pkg/libutp/src"] + path = pkg/libutp/src + url = https://github.com/oasislinux/libutp.git [submodule "pkg/loksh/src"] path = pkg/loksh/src url = https://github.com/dimkr/loksh diff --git a/pkg/gen.lua b/pkg/gen.lua @@ -42,6 +42,7 @@ subgen 'libpciaccess' subgen 'libpng' subgen 'libressl' subgen 'libtermkey' +subgen 'libutp' subgen 'libxkbcommon' subgen 'loksh' subgen 'lpeg' diff --git a/pkg/libutp/gen.lua b/pkg/libutp/gen.lua @@ -0,0 +1,9 @@ +cflags{ + '-Wall', + '-D POSIX', + '-I $srcdir', +} + +lib('libutp.a', {'utp.c', 'utp_utils.c'}) + +fetch 'git' diff --git a/pkg/libutp/src b/pkg/libutp/src @@ -0,0 +1 @@ +Subproject commit 0129aef8428ee3b42259ad8b24d4c02035f3f097 diff --git a/pkg/libutp/ver b/pkg/libutp/ver @@ -0,0 +1 @@ +0129aef842 r0