From 16f0c5ba234e228aa525ffc3a51d348795276f17 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Mon, 23 Nov 2015 21:39:20 +0000 Subject: [PATCH] Pin versions of libespm and libloadorder required --- README.md | 4 ++-- scripts/install-step.travis.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cefb1695..748a9bab 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,9 @@ LOOT requires the following C/C++ libraries (version numbers used in latest deve * [Boost](http://www.boost.org) v1.59.0 * [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef) branch 2454: 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) +* [Libespm](http://github.com/WrinklyNinja/libespm) v1.0.0 * [Libgit2](http://libgit2.github.com/) v0.23.3 -* [Libloadorder](http://github.com/WrinklyNinja/libloadorder) +* [Libloadorder](http://github.com/WrinklyNinja/libloadorder) revision 50342d7 * [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 da81d19c..cd7fbd66 100644 --- a/scripts/install-step.travis.sh +++ b/scripts/install-step.travis.sh @@ -8,8 +8,8 @@ wget -P build https://raw.githubusercontent.com/rpavlik/cmake-modules/master/Get cd ../.. # Install libespm. -wget https://github.com/WrinklyNinja/libespm/archive/master.tar.gz -O - | tar -xz -mv libespm-master libespm +wget https://github.com/WrinklyNinja/libespm/archive/1.0.0.tar.gz -O - | tar -xz +mv libespm-1.0.0 libespm # Build yaml-cpp wget https://github.com/WrinklyNinja/yaml-cpp/archive/patched-for-loot.tar.gz -O - | tar -xz @@ -28,8 +28,8 @@ make git2 cd ../.. # Build libloadorder -wget https://github.com/WrinklyNinja/libloadorder/archive/master.tar.gz -O - | tar -xz -mv libloadorder-master libloadorder +wget https://github.com/WrinklyNinja/libloadorder/archive/50342d7298f27a6a4366175119bd17aaf09000c7.tar.gz -O - | tar -xz +mv libloadorder-50342d7298f27a6a4366175119bd17aaf09000c7 libloadorder mkdir libloadorder/build && cd libloadorder/build cmake .. -DPROJECT_ARCH=64 -DPROJECT_STATIC_RUNTIME=OFF -DBUILD_SHARED_LIBS=OFF -DGTEST_ROOT=../gtest-1.7.0 make loadorder64