Repository: geode-native
Updated Branches:
  refs/heads/develop 4999c7910 -> c63dc0520


GEODE-3120: Fixes long file path issues on Windows.

- Windows has a low limit on the maximum number of characters
  allowed in a path. Some of the long file names in Boost can
  exceed this when appended to the full build path.


Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/c63dc052
Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/c63dc052
Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/c63dc052

Branch: refs/heads/develop
Commit: c63dc0520ba85112f427bd0573b753fdecbb57ff
Parents: 4999c79
Author: Jacob Barrett <[email protected]>
Authored: Sat Jun 24 07:26:10 2017 -0700
Committer: Jacob Barrett <[email protected]>
Committed: Sat Jun 24 07:26:10 2017 -0700

----------------------------------------------------------------------
 src/dependencies/boost/CMakeLists.txt | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/c63dc052/src/dependencies/boost/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/dependencies/boost/CMakeLists.txt 
b/src/dependencies/boost/CMakeLists.txt
index bd03cae..73829b4 100644
--- a/src/dependencies/boost/CMakeLists.txt
+++ b/src/dependencies/boost/CMakeLists.txt
@@ -53,6 +53,10 @@ ExternalProject_Add( ${${PROJECT_NAME}_EXTERN}
    CONFIGURE_COMMAND ${_BOOTSTRAP_COMMAND}
    BUILD_COMMAND ${_B2_COMMAND} ${_B2_FLAGS}
    INSTALL_COMMAND ${_B2_COMMAND} ${_B2_FLAGS} install
+   PREFIX .
+   DOWNLOAD_DIR .
+   SOURCE_DIR ./src
+   STAMP_DIR ./stamp
 )
 
 ExternalProject_Get_Property( ${${PROJECT_NAME}_EXTERN} SOURCE_DIR )

Reply via email to