From 60d15b1f1feb3b05e844b219b925f0088f37f26c Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 6 Mar 2016 13:54:38 +0000 Subject: [PATCH] Update to libgit2 v0.24.0 Also update the Boost version in the readme to v1.60.0, as I've been using that for a while now. --- README.md | 4 ++-- scripts/install-step.travis.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 62c695c6..5c069408 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ Once Node.js is installed, run `npm install` from the repository root to install LOOT requires the following C/C++ libraries (version numbers used in latest development revision given): -* [Boost](http://www.boost.org) v1.59.0 +* [Boost](http://www.boost.org) v1.60.0 * [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef) branch 2526: Required to build the GUI, but not the API or tests. * [Google Test](https://github.com/google/googletest) v1.7: Required to build the tests, but not the API or the GUI. * [Libespm](http://github.com/WrinklyNinja/libespm) v2.5.0 -* [Libgit2](http://libgit2.github.com/) v0.23.4 +* [Libgit2](http://libgit2.github.com/) v0.24.0 * [Libloadorder](http://github.com/WrinklyNinja/libloadorder) v7.0.0 * [Pseudosem](http://github.com/WrinklyNinja/pseudosem) v1.0.1 * [yaml-cpp](http://github.com/WrinklyNinja/yaml-cpp): Use the `patched-for-loot` branch. diff --git a/scripts/install-step.travis.sh b/scripts/install-step.travis.sh index 43e937f8..51e69136 100644 --- a/scripts/install-step.travis.sh +++ b/scripts/install-step.travis.sh @@ -17,8 +17,8 @@ make yaml-cpp cd ../.. # Build libgit2 -wget https://github.com/libgit2/libgit2/archive/v0.23.4.tar.gz -O - | tar -xz -mv libgit2-0.23.4 libgit2 +wget https://github.com/libgit2/libgit2/archive/v0.24.0.tar.gz -O - | tar -xz +mv libgit2-0.24.0 libgit2 mkdir libgit2/build && cd libgit2/build cmake .. -DBUILD_SHARED_LIBS=OFF make git2