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
2013-05-16svn merge ^/trunk/blender -r56533:56534Campbell Barton
2013-04-29Fix for a typo in scons configurationSergey Sharybin
2013-04-23Strip unneeded folders and files from numpySergey Sharybin
2013-04-23Buildbot tweaksSergey Sharybin
Add numpy installation to blender player configuration, this is so because player is building first and it installs python, which prevented numpy installation from blender configuration.
2013-04-18Enable numpy install for buildbotSergey Sharybin
Numpy is compiled at build environment, but importing it from blender somehow fails. Will need help of Campbell for this.
2013-04-17Turn OpenMP on for MinGW, it works the 32 bit compiler.Antony Riakiotakis
2013-04-14code cleanup: minor changes, clang checker option for exact size matches and ↵Campbell Barton
use vector functions.
2013-04-13Fix some compilation errors for MinGW. Thanks to vildas on irc forAntony Riakiotakis
bringing this to attention.
2013-04-12code cleanup: warnings and style.Campbell Barton
2013-04-10OSX: remove the applescript and env var for omp_set_treads from plistJens Verwiebe
2013-04-08select-camera operator could select hidden cameras, also disable freestyle ↵Campbell Barton
for `make lite` target.
2013-04-07Raise magic numbers for OSL and OpenCollada (should have done that much ↵Bastien Montagne
earlier), this will force rebuild of those libs next time, hopefully will solve user's issues with outdated libs.
2013-04-07Missing build_files updates in the merger in revision 55847.Tamito Kajiyama
2013-04-07Freestyle / Scons:Thomas Dinges
* Changes in tools\Blender.py were not merged, causing compile failure.
2013-04-06Fix freestyle compile with sconsJens Verwiebe
2013-04-05More fixes for install_deps.sh under ubuntu 10.04: git package is called ↵Bastien Montagne
"git-core", and 'apt-cache policy' returns a different result than newer versions when no package is found, changed the "available deb package" test to use "apt-cache show" instead.
2013-04-05First fix for install_deps and ubuntu 10.04 (no libtiff5, only libtiff4, ↵Bastien Montagne
wonder why this package does not work as jpeg or png ones)... This allows compilation of OIIO, install_deps.sh still working though (on this old OS, all libs have to be compiled, takes time... :/).
2013-04-01correct too-big allocation in mesh beautify.Campbell Barton
2013-03-29Use same opencollada rev as windows' libs.Bastien Montagne
2013-03-28code cleanup: python/pep8 and double-promotion warnings.Campbell Barton
2013-03-28modified build system for updated opencollada libraries (windows only, other ↵Gaia Clary
platforms might want to update as well)
2013-03-27Fix #33518: Jack sync doesn't work in 2.64, 2.64 or 2.65 stable versionsSergey Sharybin
Added new build option WITH_JACK_DYNLOAD for CMake and WITH_BF_JACK_DYNLOAD for SCons, which means there'll be no build-time linking against libjack and getting symbols from libjack will happen runtime using dlopen and dlsym tricks. Alternative would be to use weak linking, but it'll require having wrapper for preloading libjack. This new options are disabled by default and they only intended to be used on linux. Other platforms shall not be using this and there shall be no functional changes on non-linux platforms at all.
2013-03-23Fix for opencollada building in install_deps.sh script.Bastien Montagne
Stick to rev c89cf095c40aa2a518b1104c448825eacc92d174 of opencollada repo, next commit breaks API and prevent blender from building anymore... :(
2013-03-22Patch [#34680] Updated install_deps script, by Ejner Fergo (ejnersan), thanks!Bastien Montagne
The script is updated with: Arch Linux support Numpy 1.7.0 final Fedora 17 / 18 support OpenSUSE 12.2 / 12.3 support Use FFMPEG from RPM-distro repos RPM-distro fixes Removed Schroedinger codec Fixes for Cmake/Scons config Reviewed by Sergey and me.
2013-03-16code cleanup: quiet some -Wshadow warnings, mix of obvious mistakes and ↵Campbell Barton
harmless global/local naming conflict.
2013-03-14tweaks to clang so blender can build with -WerrorCampbell Barton
2013-03-14style cleanup: odd indentationCampbell Barton
2013-03-12Woops, installing dlls shall happen after all the folders are created.Sergey Sharybin
2013-03-12Made a mistake in recent windows buildbot tweaks.Sergey Sharybin
Didn't count indentation correct..
2013-03-12use gcc warning -Wredundant-decls, exposes some odd/duplicate declarations ↵Campbell Barton
which have been removed.
2013-03-11Mixed paths to redist libraries in recent commitSergey Sharybin
2013-03-11Windows buildbot tweaksSergey Sharybin
Make it so install directory is being nicely cleaned before next build, which makes it automatically removing all old files from previous installations.
2013-03-11Fix first regression introduced with r55173: need to import shutil before ↵Sergey Sharybin
using methods from it Otherwise linux buildbot fails dramatically. That revision also leads to msvc runtime libs being removed, will fix this in separate commit. Take more respect for such creepy as linux and windows platforms, they're not so bad!
2013-03-10Buildbot: mac configuration files for i386 and x86_64.Brecht Van Lommel
2013-03-04patch [#34525] Scons ' colorCampbell Barton
by Andrey Izrantsev (bdancer)
2013-02-27add PHY headers to cmake's ketsji (else some IDE's won't show)Campbell Barton
2013-02-27Fix various warnings with clang build, and adjust cmake clang warnings flagsBrecht Van Lommel
to include a few more that gcc is using too.
2013-02-24install_deps.sh:Thomas Dinges
* Disable OIIO test and cmd tools per default, they are not needed for Blender.
2013-02-24Rename CMake's Boost_USE_ICU to WITH_BOOST_ICU (update your CMake conf if ↵Bastien Montagne
you make static builds!), and add it as CMake option. Patch by gdh (Gavin Howard), many thanks!
2013-02-23Install_deps script:Thomas Dinges
* Use OIIO 1.1.7, this removes the need for the ugly patch. * Use official OSL 1.3.0 repo * Print OSL path for scons Tested on Ubuntu 12.10 x64.
2013-02-21Cycles GPU rendering:Thomas Dinges
* Deprecate computing capability 1.3 (sm_13) This commit disables auto build of sm_13 CUDA platform, which means that starting with Blender 2.67, we don't support sm_13 devices anymore. It has become difficult to support that and it was already feature incomplete (no render-passes, AO, Multi Closure etc). It's still possible to manually enable sm_13 for own tests, but building might break in the future.
2013-02-12Buildbot: revert r54465 and r54466 -- issue was not caused bySergey Sharybin
crosscompilation, but was caused by some bugs in toolkit itself. Shall be all fine now (at least it is on my laptop now). Let give it another try!
2013-02-11Buildbot: -WITHOUT_BF_OVERWRITE_INSTALL should not be needed nowSergey Sharybin
2013-02-11Buildbot: switch to using native toolkit againSergey Sharybin
Crosscompiling of cubins doesn't work on linux with toolkit 4.2, so use native toolkit for now. Disabled sm_13 for 32bit platform for now. Would keep cudakernels build target for a while. It doesn't hurt being in the code and it could be helpful again once we'll switch to toolkit 5.x where crosscompilation works fine. Some further tweaks could probably be needed still, let's see how building goes on buildbot now :)
2013-02-11Fix scons win32 link error with OSL, also fix a GLEW linker warningBrecht Van Lommel
2013-02-07removing xinerama on X11 dependency, this wasn't working very usefully.Campbell Barton
2013-02-06add missing bullet header to cmake, quiet reports from 'make test_cmake'Campbell Barton
2013-02-06enable xinerama for scons.Campbell Barton
2013-02-05OSX/cmake/scons: python version foolproofJens Verwiebe
2013-01-31Fix scons building under unix. Now we should really have only *one* ↵Bastien Montagne
'/usr/lib' lib search path, in last position! Previously we could have a bunch of those, even in first position, which would e.g. prevent linking against a custom boost in /opt/lib/boost if you had a system boost installed...