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
2011-03-12cmake, search $HOME/py32 for python now too.Campbell Barton
2011-03-12builder reports MSVC was setting stack size to 2gig.Campbell Barton
2011-03-12edit scons to use py3.2 on all os's and use 'm' abiflag on linux since this ↵Campbell Barton
is the most common.
2011-03-12set 2mb stack for mingw too.Campbell Barton
2011-03-12Fix [#25659] crash when unwrapping specific meshNathan Letwory
Reported by Jan Hohoho Running the unwrap causes stack to overflow. Double the size from default 1MB.
2011-03-10CMake should find python now without manual options being set on linux.Campbell Barton
cmake on *nix detects python ABI flags for debug and release mode. searches /usr /usr/local /opt/py32
2011-03-09disable openexr and collada for mingw, give linking errors.Campbell Barton
2011-03-07se BLI_snprintf() for msvc compat, cleanup CMake file, some bad comments ↵Campbell Barton
left in. also on only try build RPM's on linux.
2011-03-06update 'make' GNUmakefile stub to run 'make install'Campbell Barton
update packman and debian for to disable portable install option.
2011-03-06use tar.gz for windows python zipfiles rather then .zip,Campbell Barton
since cmake can only extract tar's
2011-03-04change mingw-scons to use python 3.2 Ervin Weber
2011-03-04Bump OSX SCons to use Python 3.2. Remember to update your lib/darwin* directory.Nathan Letwory
2011-03-04Move Windows SCons system to build Blender against the new Python 3.2 libs ↵Nathan Letwory
committed in r35340 and r35341. Platform maintainers and release builders, please update your systems also to Python 3.2.
2011-03-03fix for invalid empty string check in uniquename callback.Campbell Barton
2011-03-03patch [#26235] debian/watch: Update for change of versioningCampbell Barton
2011-03-03added support for windows/mingwCampbell Barton
2011-03-03Py/RNA API: WITH_PYTHON_SAFETYCampbell Barton
compile time option which enables extra safety checks. since this is noticeably slower I rather not enable by default yet.
2011-03-03fix error in qtcreator project file arg checking and check for cmake files.Campbell Barton
2011-02-28git users complain this breaks for themCampbell Barton
2011-02-28Make sure python.zip is extracted only once. This prevents erroring build on ↵Nathan Letwory
the unzip stage.
2011-02-28build system now exclude config-*, turtledemo when copying system python.Campbell Barton
also remove __pycache__ dirs when cleaning (new in python 3.2)
2011-02-27- use Py_CLEAR for python internally referencing other PyObjects (supposed ↵Campbell Barton
to be safer). - detect includes for qtcreator projects as well as the ones from cmake (it didnt return all of the right paths).
2011-02-26fix for 'live edit', running python scripts as you typeCampbell Barton
- errors would jump to the line which gets in the way. - the window wouldn't always redraw.
2011-02-26qtcreator project generator now includes defines and correct include paths.Campbell Barton
2011-02-26recent changes to svn broke rpm builder, also include rpm version infoCampbell Barton
2011-02-25add NDEBUG to scons release flags + some pep8 cleanup for examples.Campbell Barton
2011-02-25use flag _DEBUG, not DEBUG.Campbell Barton
2011-02-25fix for scons with recent change to how BINRELOC is enabled via cmake.Campbell Barton
also add WITH_PYTHON define to qtcreator project generator until we get a way to add them properly.
2011-02-25Fix buildinfo, as pointed by IRIE Shinsuke.Guillermo S. Romero
Added a note about doubtful "copy if different".
2011-02-25Make buildinfo not fail with git-svn as suggested by Nicholas Bishop.Guillermo S. Romero
Improve formating and comments a bit.
2011-02-25SVN maintenance.Guillermo S. Romero
2011-02-24fix for cmake not having the correct svn revision in buildinfo, now generate ↵Campbell Barton
a header every build with the time, date, svn revision.
2011-02-24patch [#26178] build_debian.sh: Use BLENDER_VERSION_CHARCampbell Barton
from Shinsuke Irie (irie) also apply to pacman.
2011-02-22missing deps for pacmanCampbell Barton
2011-02-22Type in snapshort ;)Ton Roosendaal
2011-02-22cmake was using dna source list with the variable out of scope, possibly ↵Campbell Barton
causing dependency problems.
2011-02-22part of a patch from Dan Eicher with some edits.Campbell Barton
- clean svn string: 35042:35051M -> 35051 - debian and pacman build with threads by default.
2011-02-21patch [#26146] debian/rules: Avoid unnecessary downloadingCampbell Barton
--- from the tracker It's annoying that build_debian.sh downloads the source tree to create tarball every time we build a deb package. fix_debian_rules_avoid_downloading.patch modifies debian/rules so that the tarball will be created from local repository if possible.
2011-02-21better macro for getting the blender version from BKE_blender.h, also re-run ↵Campbell Barton
CMake if BKE_blender.h changes.
2011-02-21fix for cmake with last commit.Campbell Barton
2011-02-21Move blender version info into BKE_blender.h so we only have the info in one ↵Campbell Barton
place and so package building scripts can extract it in a more usable way. this also means we can have a version string like '2.56a-beta' without using buildinfo. release/VERSION was only used by scons, NSIS installer. Possibly helps to fix bug [#26062] too.
2011-02-21fix [#26152] Blender File for Image too SmallCampbell Barton
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
2011-02-21Experimental option to build blender as a python module, rather then blender ↵Campbell Barton
embedding python. CMake build option WITH_PYTHON_MODULE, will build ./bin/bpy.so This allows 'bpy' to be imported from python or other applications/IDE's which embed python, eg: python -c "import bpy ; bpy.ops.render.render(write_still=True)" This runs in background mode and has similar restrictions to running a script: blender --background --python test.py TODO: - install to site-packages with blender scripts - add support for imp.reload()
2011-02-18Check the os.environ at the start of the build process.Nathan Letwory
Print any variable that contains a value with non-ascii characters, then abort build.
2011-02-17patch [#26063] Fix deb package versioning (Patch for #26062)Campbell Barton
from Shinsuke Irie (irie), also updated pacman
2011-02-17CMake: remove workaround for cmake 2.8.3 problem testing ↵Campbell Barton
-Werror=strict-prototypes flag (now 2.8.4 is out). This is harmless, CMake 2.8.3 just wont build with -Werror=strict-prototypes which is nice for picky devs.
2011-02-17pep8 cleanup and remove unused vars/importsCampbell Barton
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-15patch from IRIE Shinsuke, use systems openjpeg on *nix.Campbell Barton
2011-02-15CPack packaging support from Dan Eicher, tested to build redhat RPM's, a Mac ↵Campbell Barton
bundle also defined.