From a7f30e860e064cb026b30f6b12f5c3ea678a9e8d Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 18 Jul 2018 14:17:56 +0800 Subject: [PATCH] fmt: add libfmt submodule libfmt is a library for fast printf() support in C++, it is used by seastar. but it's missing in xenial. so we need to ship it in our dist tarball and build if if it's not found in system. Signed-off-by: Kefu Chai --- .gitmodules | 3 +++ src/fmt | 1 + 2 files changed, 4 insertions(+) create mode 160000 src/fmt diff --git a/.gitmodules b/.gitmodules index f68b57fa809..c8cd4d433a5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "src/seastar"] path = src/seastar url = https://github.com/ceph/seastar.git +[submodule "src/fmt"] + path = src/fmt + url = https://github.com/ceph/fmt.git diff --git a/src/fmt b/src/fmt new file mode 160000 index 00000000000..f61e71ccb9a --- /dev/null +++ b/src/fmt @@ -0,0 +1 @@ +Subproject commit f61e71ccb9ab253f6d76096b2d958caf38fcccaa -- 2.39.5