diff --git a/cmake/Modules/BuildPython.cmake b/cmake/Modules/BuildPython.cmake index f8abffdc2..5dbdbfe98 100644 --- a/cmake/Modules/BuildPython.cmake +++ b/cmake/Modules/BuildPython.cmake @@ -41,7 +41,7 @@ if(APPLE) endif() endif() - set( Python_CONFIGURE ${CMAKE_COMMAND} -E env "CFLAGS=${Python_C_FLAGS}" "CPPFLAGS=${Python_C_FLAGS}" "CXXFLAGS=${Python_CXX_FLAGS}" "LDFLAGS=${Python_LD_FLAGS}" -- ./configure --enable-optimizations --enable-shared --with-openssl=${_openssl_LOC} --prefix=${CMAKE_INSTALL_PREFIX} + set( Python_CONFIGURE ${CMAKE_COMMAND} -E env "CFLAGS=${Python_C_FLAGS}" "CPPFLAGS=${Python_C_FLAGS}" "CXXFLAGS=${Python_CXX_FLAGS}" "LDFLAGS=${Python_LD_FLAGS}" -- ./configure --enable-optimizations --enable-shared --with-openssl="${_openssl_LOC}" --prefix=${CMAKE_INSTALL_PREFIX} ) set( Python_BUILD make -j ${NPROCS} ) set( Python_INSTALL make -j ${NPROCS} install ) diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md index 773d21528..55041a56e 100644 --- a/mrv2/docs/HISTORY.md +++ b/mrv2/docs/HISTORY.md @@ -30,6 +30,7 @@ v1.1.9 - Improved -pythonScript functionality. It is now possible to change OCIO settings, load clips and save out a new movie file with baked OCIO, all from a Python script. +- Fixed building mrv2 without TLRENDER_NET and with BUILD_PYTHON ON on macOS. - Consolidated Python commands to all use "filename" instead of "file". - Added bakeOCIO.py demo script with arguments. - Added -pythonArgs command-line string to pass a string of separated arguments