From 78d9fcd00c04b95bbf5a4ac26dc393c0e206d16c Mon Sep 17 00:00:00 2001 From: Dan Macumber Date: Sat, 27 Oct 2018 09:59:09 -0600 Subject: [PATCH] initial Ruby updates --- .gitignore | 2 ++ CMakeLists.txt | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a2016d9aef9..a8b626ed208 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,8 @@ test_fails.txt /build-profile/ /core-build/ /super-build/ +/super-build-shared/ +/super-build-static/ *.sublime-workspace diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c53e286495..7d4e7272cf7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -336,10 +336,10 @@ if( BUILD_RUBY ) # Please install DevKit even though the build will be done by msvc the ruby build system uses some traditionally unix tools ExternalProject_Add(Ruby DEPENDS ZLib - URL https://codeload.github.com/ruby/ruby/tar.gz/v2_2_4 - URL_MD5 3f0d280116092dc5278b6cff31948aad + URL https://codeload.github.com/ruby/ruby/tar.gz/v2_5_1 + URL_MD5 98b550a05fec0f7a43a22d6c37404fd4 BUILD_IN_SOURCE 1 - PATCH_COMMAND ${PATCH_EXE} -p1 < ${CMAKE_SOURCE_DIR}/dependencies/ruby/Ruby.patch + PATCH_COMMAND "" #${PATCH_EXE} -p1 < ${CMAKE_SOURCE_DIR}/dependencies/ruby/Ruby.patch CONFIGURE_COMMAND "" BUILD_COMMAND cmd /C "${CMAKE_BINARY_DIR}/build_ruby.bat" INSTALL_COMMAND ""