From e02d67b2fc0203ba2bf5f705429a9c2280183795 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 26 Jul 2014 18:47:10 +0200 Subject: [PATCH] Import UTCP as a git submodule. --- .gitmodules | 3 +++ src/Makefile.am | 6 +++++- src/utcp | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 src/utcp diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..add1976b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "src/utcp"] + path = src/utcp + url = git://meshlink.io/utcp diff --git a/src/Makefile.am b/src/Makefile.am index 9a92c422..c1d887e9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,6 +28,9 @@ chacha_poly1305_SOURCES = \ chacha-poly1305/chacha-poly1305.c chacha-poly1305/chacha-poly1305.h \ chacha-poly1305/poly1305.c chacha-poly1305/poly1305.h +utcp_SOURCES = \ + utcp/utcp.c utcp/utcp.h + sptps_test_SOURCES = \ crypto.c crypto.h \ logger.c logger.h \ @@ -99,7 +102,8 @@ libmeshlink_la_SOURCES = \ utils.c utils.h \ xalloc.h \ $(ed25519_SOURCES) \ - $(chacha_poly1305_SOURCES) + $(chacha_poly1305_SOURCES) \ + $(utcp_SOURCES) libmeshlink_la_CFLAGS = -fPIC diff --git a/src/utcp b/src/utcp new file mode 160000 index 00000000..69348803 --- /dev/null +++ b/src/utcp @@ -0,0 +1 @@ +Subproject commit 6934880365c13cfebe5806be0f40c4c45a5dcf84 -- 2.39.2