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
AgeCommit message (Collapse)Author
2018-09-17Merge branch 'master' into blender2.8Bastien Montagne
2018-09-17Install_deps: workaround building bloody broken OpenEXR release.Bastien Montagne
2018-09-17build_environment: force a consistent libdir across Linux distributions.Ray Molenkamp
on some distributions libs ended up in lib64 confusing the cmake builder.
2018-09-14Fix OpenColorIO link errors in some Linux builds.Brecht Van Lommel
The library can get installed in a lib/static subdirectory, so search there as well now.
2018-09-14Fix OpenColorIO link errors in some Linux builds.Brecht Van Lommel
The library can get installed in a lib/static subdirectory, so search there as well now.
2018-09-13Merge branch 'master' into blender2.8Bastien Montagne
2018-09-13Fix building deps when OpenCV dev package is present.Bastien Montagne
Since we are not linking against OpenCV ourselves, that generated linking errors later on (while building OSL e.g.). Those 'open' libs link against way too many other libs... :/ Thanks to @intrah for initial report (T56785), and @LazyDodo for suggested solution.
2018-09-13Merge branch 'master' into blender2.8Campbell Barton
2018-09-13Cleanup: move 'make help_features' into own fileCampbell Barton
2018-09-12CMake: Fix compilation with Bullet enabledSergey Sharybin
Obvious bug in recent CName cleanup commit, while BGE library was indeed mentioned on that line it was to put Bullet libraries after all the other libraries. One day we should really switch to a CMake dependency graph to take care of library dependencies.
2018-09-12Cleanup: remove BGE referencesCampbell Barton
2018-09-12Merge branch 'master' into blender2.8Campbell Barton
2018-09-12CMake: add openjpeg 2x search pathsCampbell Barton
Wasn't finding the include path by on Linux.
2018-09-12Merge branch 'master' into blender2.8Campbell Barton
2018-09-11Build: require OpenJPEG 2.x minimum, remove bundled version.Brecht Van Lommel
* WITH_SYSTEM_OPENJPEG is removed and is now always on, this was already the case for macOS and Windows. * This should not break existing Linx builds. If there is no new enough OpenJPEG installed, CMake will no find libopenjp2 and WITH_IMAGE_OPENJPEG will be disabled. * install_deps.sh was updated with new package names, since distributions put this version in a new package. Differential Revision: https://developer.blender.org/D3663
2018-09-11Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-11Build: update for new macOS libraries.Brecht Van Lommel
Run "make update", or "svn update" in lib/darwin to get the matching precompiled libraries.
2018-09-11Build Environment: updates for macOS.Brecht Van Lommel
Mainly this is following Linux to build own xml2/lzma/ssl/sqlite and linking them all statically. This ensures the Python ssl module uses a recent openssl version rather than a very old one shipped with macOS.
2018-09-07Merge branch 'master' into blender2.8Bastien Montagne
2018-09-07Install_deps: fix llvm/clang ARCH package names.Bastien Montagne
Issue raised in T56540, thanks. Also tried to re-enable using fedora's llvm/clang packages, would hope and assume old issue here is fixed.
2018-09-07Merge branch 'master' into blender2.8Bastien Montagne
2018-09-07Install_deps: Fix wrong URL for ILMBase/OpenEXR source archives.Bastien Montagne
They also went to github...
2018-09-07Merge branch 'master' into blender2.8Bastien Montagne
2018-09-07Install_deps: Fix building python on fedora 28Bastien Montagne
Looks like libffi is now a dependency of python as well... Done it for the other distro as well, just in case. ;)
2018-09-06Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/editors/space_node/drawnode.c
2018-09-06Update install_deps.sh to latest libs.Bastien Montagne
Tested with Debian Testing, might need some adjustements for other distributions... Also removed last patches we used here, we shall not need any anymore!
2018-09-02Cleanup: move select all/none/invert into templateCampbell Barton
2018-08-31Merge branch 'master' into blender2.8Sergey Sharybin
2018-08-31Buildbot: Usable PIESergey Sharybin
Makes it impossible to run from GUI on certain platforms, see T56628.
2018-08-31Merge branch 'master' into blender2.8Brecht Van Lommel
2018-08-31Fix T56618: crash in release builds when GHOST asserts.Brecht Van Lommel
WITH_ASSERT_ABORT was not disabled for release builds. In most cases asserts are disabled in release builds, but not always. This also changes the buildbot to use blender_release.cmake instead of blender_full.cmake, the only effective difference should be WITH_ASSERT_ABORT.
2018-08-30Buildbot: Correction to previous commitSergey Sharybin
2018-08-30Buildbot: Attempt to fix glibc-2.19 compilationSergey Sharybin
It is likely to be retired, but for until then lets ensure it works.
2018-08-30Merge branch 'master' into blender2.8Brecht Van Lommel
2018-08-30Build environment: Tweak to harvasting scriptSergey Sharybin
The idea is to make find_package() to succeed without any extra tips given. For this, we need header files to be harvasted.
2018-08-30Buildbot: Get rid of OpenJPEG 2 hackSergey Sharybin
Also clarified some options and decisions.
2018-08-30CMake: Automatically detect OpenJPEG 2 librariesSergey Sharybin
There is chance that on a system with both versions installed this *might* cause some issues. Such system will be pain to support out of the box anyway. This change allows to use precompiled libraries without extra modifications in the config.
2018-08-29Buildbot: Tweak configuration to actually ve successful in chrootSergey Sharybin
2018-08-29Buildbot: Make configuration to pass config stateSergey Sharybin
- Foe some reason CMake's platform and processor are not intialized there. - Need to set variables in cache, otherwise they are not visible in the actual CMake files.
2018-08-29Cleanup: trailing spaceCampbell Barton
2018-08-29Cleanup: trailing spaceCampbell Barton
2018-08-29Merge branch 'master' into blender2.8Brecht Van Lommel
2018-08-29Cleanup: remove unused build environment patches.Brecht Van Lommel
2018-08-29Buildbot: Some inital work to support newer chroot environmentSergey Sharybin
2018-08-29CMake: Allow specifying custom LIBDIR on UnixSergey Sharybin
Works similar to how maxOS deals with this.
2018-08-29Merge branch 'master' into blender2.8Sergey Sharybin
2018-08-29CMake: Comply with include path reported by FindOpenGL.cmakeSergey Sharybin
The script clearly states: This makes the presumption that you are include al.h like #include "al.h" and not #include <AL/al.h> The reason for this is that the latter is not entirely portable. Windows/Creative Labs does not by default put their headers in AL/ and OS X uses the convention <OpenAL/al.h>. This commit makes default precompiled OpenAL to be properly detected and also removes hack on MacOS which was finding the OpenAL package but then was overwriting include directory. Note, that new audaspace in 2.8 is using expected #include <al.h>.
2018-08-29CMake: Make sure zlib folder comes first for precompiled Linux librariesSergey Sharybin
Without this find_package(ZLIB) will find ZLib from OpenCollada folder, which has older ABI and is not what was used to link PNG against.
2018-08-29Build environment: Fix compilation of boost on Linux 32bitSergey Sharybin
2018-08-28Merge branch 'master' into blender2.8Brecht Van Lommel