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-08-11remove unused auto-key struct-member from uiAfterFunc, add compiler defines ↵Campbell Barton
to cppcheck utility script.
2013-08-10Linux install_deps: update OpenCOLLADA to ↵Bastien Montagne
828b60384552b83e55d2af7055f07d2c40b4d3f4 repo UID.
2013-08-08pass compiler defines such as __FLT_MIN__ to smatch and sparse (they fail ↵Campbell Barton
without them).
2013-07-15clang/cmake - quiet warnings for external libs and reference moto as a ↵Campbell Barton
system include.
2013-07-10remove reference to wrong python version in comments & pedantic style edit.Campbell Barton
2013-06-30Patch [#35897] install_deps: add OpenEXR to ldconfig by Gavin Howard, thanks.Bastien Montagne
2013-06-26Update osl magic number when updating version ;)Bastien Montagne
2013-06-26Install Deps script:Thomas Dinges
* Use recent OSL 1.3.2 release.
2013-06-24replace use of 'a.find(b) != -1' --> 'b in a'Campbell Barton
2013-06-24Fix for #35851:Jürgen Herrmann
- Make scons work for non western CL.exe.
2013-06-23prevent cycles sm_35 kernel to be built on win32 with vs2012 because of ↵Jürgen Herrmann
ptxas crashes. Workaround to keep buildbot running. I filed a bug report to NVidia, will remove this as soon as the problem is fixed.
2013-06-23Switch buildbot to use OpenEXR-2.0Sergey Sharybin
2013-06-21Code cleanup: fix some vs2012 compiler warningsBrecht Van Lommel
2013-06-21Updating suse packman repo url, name and alias to go in line with what suse ↵Daniel Salazar
does right now. At least this should avoid duplicate packman repos on 12.3
2013-06-20Install_deps.sh: ask suse users whether they want to install packman or not ↵Bastien Montagne
(can be already installed/enabled from a different URL, Suse repositories management is to complex to be handled automatically at this point).
2013-06-20Move DLL copying to before actual build process.Nathan Letwory
2013-06-20Cycles: update build configurations to include CUDA sm_35 architecture. When ↵Brecht Van Lommel
using a compiler older than CUDA 5.0 it will give a warning and skip this architecture.
2013-06-19VS 2012 x86 SCons update.Jürgen Herrmann
2013-06-18Scons and BuildBot changes for MSVC 2012 support.Jürgen Herrmann
Thanks Brecht and Thomas for reviewing ;)
2013-06-17cmake: remove set_lib_path macroCampbell Barton
2013-06-17CMake / vc2010:Thomas Dinges
* Remove vc2010 support from cmake. There is some "if(MSVC10)" left in extern - ceres, but will leave that for Sergey. :)
2013-06-17Only printing errors.Nathan Letwory
(No news is good news).
2013-06-16Fix for building Blender with OSL, and no OpenEXR headers in standard paths ↵Bastien Montagne
(like /usr/include/OpenEXR). As OSL headers mix #include <OpenEXR/foo.h> and #include <foo.h>, we need both /path/to/openexr/include and /path/to/openexr/include/OpenEXR include paths... :/ Issue investigated by doug65536 on IRC, thanks.
2013-06-16Set up OurSpawn for MinGW compile environment on Windows.Nathan Letwory
2013-06-15Buildbot: use relative path for redistributable dlls on windows.Brecht Van Lommel
2013-06-15Buildbot: use 1 thread for windows builds.Brecht Van Lommel
2013-06-15Add USE_PYTHON=OFF and USE_OCIO=OFF to OIIO compilation (we do not need ↵Bastien Montagne
either of those).
2013-06-10Python script auto-execution changes:Campbell Barton
- script execution is off by default - if a blend file attempts to execute a script this shows a message in the header with the action that was suppressed (script/driver/game-autostart) and 2 buttons to either reload the file trusted, or to ignore the message. - the file selector will always default to use the trust setting in the user preferences, but reloading an open file will keep using the current setting (whatever was set before or set on the command-line). - added SCons setting WITH_BF_PYTHON_SECURITY, this sets the default state for the user prefereces not to trust blend files on load. ... this option was in CMake before, but always off, now its enabled by default for SCons and CMake, and forced on in CMake for now.
2013-06-03Fix compilation on MinGW32 scons. The compiled library there is already ↵Antony Riakiotakis
static, revert renaming of linked library
2013-06-02Fix #35587: Cycles: image movie to single image crashingSergey Sharybin
Crash was happening on windows platforms only and was caused by some specifics about how CRT works. Basically, blender and all of the .dll are compiled with /MT flag, which means blender.exe and all .dll are using separate environments. This makes it impossible to pass file descriptors from blender to other dll, because it becomes invalid in the dll. And this is exactly what was happening: OIIO was trying to open movie file with all known plugins and one of them was zlib. And the way OIIO was using zlib API is opening the file using Boost and passing a file descriptor to zlib. And since zlib was a dynamic library this lead to general issues using this descriptor in zlib code. Solved by linking to zlib statically. This allows to safely pass file descriptor to zlib API. Alternative would be to compile all the stuff with /MD flag, but that's much bigger and less robust way to fix the issue. Tested on windows using msvc2008, scons plus cmake both 32 and 64 bit versions. Seems to be working fine. Further tweaks for mingw and msvc2012 could be needed tho.
2013-06-01Updtae buildbot's master.vfgSergey Sharybin
2013-05-31Stupid typo, reported by Eugenio Pignataro on ML, thx.Bastien Montagne
2013-05-29Various fixes for install_deps' scons options.Bastien Montagne
Also svn-ignore BUILD_NOTES.txt generated file.
2013-05-29Various fixes to scons for linux:Bastien Montagne
* Better handling of "multiarch" python stuff (libs also need two different paths). * Fix Opencollada default paths. Hopefully this won't break anything...
2013-05-28Hopefully scons+llvm works again.Sergey Sharybin
2013-05-27And add Aarch (tested with amd64). Everything should be functionnal now...Bastien Montagne
2013-05-26Various fixes. Tested with OpenSuse 12.3 (amd64).Bastien Montagne
2013-05-25Some cleanup/reorganisation, and:Bastien Montagne
* Script should now remove relevant dirs in $INST when a package becomes suitable * Script systematically runs relevant ldconfig commands when building boost/oiio
2013-05-25Enabled new openexr for RPM-based distro. Checked with FC18/amd64 for now, ↵Bastien Montagne
will check with Suse later.
2013-05-24A bunch of fixes to install_deps.sh (most notably, a bug in oiio's embeded ↵Bastien Montagne
version of tbb, buggy oiio archive handling, moved ilmbase files into openexr dir (as expected by Blender), ...). Tested with debian testing/i386 this time.
2013-05-24First attempt to handle openexr/ilmbase 2.0 in install_deps.sh (linux builds).Bastien Montagne
Only activated for Deb-like distro for now, only tested with testing/amd64. Notes : * Had to add a hell of patches to ilmbase/openexr/oiio cmake files (some are real, stupid bugs fixing [like files missing in lists or wrong linking order], others are "enhancements" [like being able to compile both static and dyn libs for openexr]). * Unfortunately, I could not manage to keep oiio static (can't compile osl later, as it does not link all deps of oiio, tiff, jpeg, png, etc.). I’ll try to fix this later, but for now, you'll have to do as with boost (ldconfig). I won't say here what I think about not having any (reliable) way to really link a static lib into another one... :/ Will test and enable other distro in following day(s), I do not *expect* much difficulties here.
2013-05-21OSX/scons: use ditto --arch <arch> instead of cp, to thin out unused ↵Jens Verwiebe
architecture on the fly
2013-05-20code cleanup: rename bmesh operator files to be more consistentCampbell Barton
2013-05-15fix for finding openjpeg on some systems. Campbell Barton
2013-05-07Fix OS X 32 bit build error, and bring buildbot config in sync with default.Brecht Van Lommel
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