From b7eeb4f405c194fbff145eb8c5f19ec6157c38d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 13 Aug 2019 19:30:16 +0200 Subject: [PATCH 1/2] Update vendored libgit2 to 08cfa43d0e1a921 --- vendor/libgit2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/libgit2 b/vendor/libgit2 index 1a107fa..08cfa43 160000 --- a/vendor/libgit2 +++ b/vendor/libgit2 @@ -1 +1 @@ -Subproject commit 1a107fac0fc88a4d74b64ffc9ae2fd178ba631c0 +Subproject commit 08cfa43d0e1a9214a2f1239593686078e75e5636 From 57ab6bc351f96caabdeb58a5092c9dda51962603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 13 Aug 2019 20:15:01 +0200 Subject: [PATCH 2/2] script: tell libgit2 to use the builtin regex backend --- script/build-libgit2-static.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/script/build-libgit2-static.sh b/script/build-libgit2-static.sh index 680dd93..096c5c6 100755 --- a/script/build-libgit2-static.sh +++ b/script/build-libgit2-static.sh @@ -12,6 +12,7 @@ cd "${BUILD_PATH}/build" && cmake -DTHREADSAFE=ON \ -DBUILD_CLAR=OFF \ -DBUILD_SHARED_LIBS=OFF \ + -DREGEX_BACKEND=builtin \ -DCMAKE_C_FLAGS=-fPIC \ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \ -DCMAKE_INSTALL_PREFIX="${BUILD_PATH}/install" \