From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id E9E182E00D for ; Tue, 21 May 2019 09:12:53 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SDK9mWpVb9vD for ; Tue, 21 May 2019 09:12:53 -0400 (EDT) Received: from smtp58.i.mail.ru (smtp58.i.mail.ru [217.69.128.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id A21BF2DD6E for ; Tue, 21 May 2019 09:12:53 -0400 (EDT) From: Serge Petrenko Subject: [tarantool-patches] [PATCH v2 1/2] third-party: add decNumber library Date: Tue, 21 May 2019 16:12:38 +0300 Message-Id: <6b7d86db6c4e352194897bc83ab1884f55070ab3.1558443202.git.sergepetrenko@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: In-Reply-To: To: tarantool-patches@freelists.org Cc: georgy@tarantool.org, kostja@tarantool.org, Serge Petrenko We will use it for decimal implementation in tarantool Part of #692 --- .gitmodules | 3 +++ third_party/decNumber | 1 + 2 files changed, 4 insertions(+) create mode 160000 third_party/decNumber diff --git a/.gitmodules b/.gitmodules index e3aa7d79e..9f52c3fc1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,3 +31,6 @@ path = third_party/luarocks url = https://github.com/tarantool/luarocks.git branch = tarantool-1.7 +[submodule "third_party/decNumber"] + path = third_party/decNumber + url = https://github.com/tarantool/decNumber.git diff --git a/third_party/decNumber b/third_party/decNumber new file mode 160000 index 000000000..04e31ac65 --- /dev/null +++ b/third_party/decNumber @@ -0,0 +1 @@ +Subproject commit 04e31ac65efbfb426c7fc299e736ea4e591b41a9 -- 2.20.1 (Apple Git-117)