Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArto Kitula <arto.kitula@gmail.com>2018-08-11 13:59:13 +0300
committerArto Kitula <arto.kitula@gmail.com>2018-08-11 13:59:13 +0300
commit1f33075ef043f0281c69a261c53eda0ce8334cbe (patch)
treeb13ed095c1d2c3937d4d0302bb472a03e785c501
parent544bd49e63a199a917767f735ab1fb989c83742a (diff)
deplibs: disable functions that can be found on 10.13 sdk but aren't available on 10.9 target
-rw-r--r--build_files/build_environment/cmake/python.cmake17
1 files changed, 16 insertions, 1 deletions
diff --git a/build_files/build_environment/cmake/python.cmake b/build_files/build_environment/cmake/python.cmake
index d24cfa1f590..7de498bc126 100644
--- a/build_files/build_environment/cmake/python.cmake
+++ b/build_files/build_environment/cmake/python.cmake
@@ -64,8 +64,23 @@ else()
# we need to add homebrew pkgconfig directories to get ssl, xz
set(BREW_PKG_CONFIG "/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/xz/lib/pkgconfig")
- set(PYTHON_CONFIGURE_ENV ${CONFIGURE_ENV} && export PKG_CONFIG_PATH=${BREW_PKG_CONFIG})
+ # disable functions that can be in 10.13 sdk but aren't available on 10.9 target
+ set(PYTHON_FUNC_CONFIGS
+ export ac_cv_func_futimens=no &&
+ export ac_cv_func_utimensat=no &&
+ export ac_cv_func_basename_r=no &&
+ export ac_cv_func_clock_getres=no &&
+ export ac_cv_func_clock_gettime=no &&
+ export ac_cv_func_clock_settime=no &&
+ export ac_cv_func_dirname_r=no &&
+ export ac_cv_func_getentropy=no &&
+ export ac_cv_func_mkostemp=no &&
+ export ac_cv_func_mkostemps=no &&
+ export ac_cv_func_timingsafe_bcmp=no)
+
+ set(PYTHON_CONFIGURE_ENV ${CONFIGURE_ENV} && export PKG_CONFIG_PATH=${BREW_PKG_CONFIG} && ${PYTHON_FUNC_CONFIGS})
set(PYTHON_BINARY ${BUILD_DIR}/python/src/external_python/python.exe)
+ #set(PYTHON_PATCH ${PATCH_CMD} --verbose -p1 -d ${BUILD_DIR}/python/src/external_python < ${PATCH_DIR}/python_apple.diff)
set(PYTHON_PATCH echo .)
else()
set(PYTHON_CONFIGURE_ENV ${CONFIGURE_ENV})