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-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-23Typo fixes for the typo fixes. :DThomas Dinges
2011-10-23fix some typo'sCampbell Barton
2011-10-23Context menu 'Edit Source' operator no longer needs to be enabled as a build ↵Campbell Barton
option, improved this so the python file:line lookups are only done when the operator runs (previously this was done for every button, every draw when the build option was enabled). Perhaps this should be hidden when not running with --debug, easy to change.
2011-10-20debug build option WITH_PYTHON_UI_INFO, so you can right click and edit the ↵Campbell Barton
python source for UI layout directly.
2011-10-17fix spelling mistakes in comments (and in some python error messages), ↵Campbell Barton
nothing to effect translations.
2011-10-02* Removing libsamplerate from build systemsJoerg Mueller
* Enabling OpenAL for scons win64-vc in default config; Nathan or Sergey: please update the build bot to build with OpenAL!
2011-10-02minor cmake edits:Campbell Barton
- osx was defaulting to -O3. - clang wasnt detecting sse compiler args.
2011-10-02fix [#28786] Large enum lists display columns in inverted order (right to left)Campbell Barton
also cleared annoying intel c++ warnings.
2011-10-01cmake:Campbell Barton
- fix for cmake's SSE detection which would fail because of strict warnings and also had redundant cache setting. - was incorrectly initializing variables (own bad) - python was searching for libs on every run, now only do this if there not cached.
2011-10-01cmake: sse flags were being defined in 2 different placesCampbell Barton
2011-09-30sse flags for intel c++ compilerCampbell Barton
2011-09-30formatting edits onlyCampbell Barton
2011-09-30minor changes, dont append with cmake platform flags which is a string and ↵Campbell Barton
use enum values rather then ints in a few places.
2011-09-27fix for building on windows, clear some warnings tooCampbell Barton
2011-09-26comment -Wundef for cmake default flags, this causes too many warnings with ↵Campbell Barton
mingw.
2011-09-25whitespace cleanupCampbell Barton
2011-09-19cleanup endian handlingCampbell Barton
- define __BIG_ENDIAN__ or __LITTLE_ENDIAN__ with cmake & scons. - ENDIAN_ORDER is now a define rather than a global short. - replace checks like this with single ifdef: #if defined(__sgi) || defined (__sparc) || defined (__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__hppa__) || defined (__BIG_ENDIAN__) - remove BKE_endian.h which isn't used
2011-09-15Update build rules to deal with new gettext libraries.Sergey Sharybin
2011-09-12fix for error linking opencollada on linux.Campbell Barton
2011-09-08patch from Uncle_Entity on IRC for fedora/colladaCampbell Barton
2011-09-06fix link issues with MinGW - a substitute declaration(correctByteOrder) for ↵Antony Riakiotakis
itoln that was not present in MinGW was being used. Duplicated the declaration from <winsock2.h>(tried including but gave some errors) and added the appropriate link library, wsock32, according to MinGW documentation.
2011-09-06fix some complier warnings and add -Wundef to CMake's default GCC warnings.Campbell Barton
2011-09-01whitespace bge editsCampbell Barton
2011-08-27mistake in own recent commit broke op[encollada with mingwCampbell Barton
2011-08-24opencollada find module. hopefully solves the problem where includes can in ↵Campbell Barton
an `/include` subdir or not.
2011-08-24cmake: skip rpath (paths to libs) for portable distrobutionCampbell Barton
2011-08-22FFmpeg library update:Sergey Sharybin
- Update scons/cmake rules to use new versions of libs/dlls. - Update rules for buildbot.
2011-08-22buildinfo is now quoted from the build systems, avoids stripping quotes on ↵Campbell Barton
startup. tested with linux/cmake linux/scons windows/cmake/mingw windows/cmake/msvc
2011-08-21new cmake doesn't consider CLang == GNUCC, set flags for clang explicitly.Campbell Barton
2011-08-07fix for building ndof with cmake on osxCampbell Barton
2011-08-03enable NDOF by default with cmake again, but check if it can be found on ↵Campbell Barton
OSX, if not disable. I cant test this but at least if I made a mistake it will just not find the SDK and disable. an osx dev needs to test.
2011-08-03Cmake: compile with NDOF default off. This is a dependency on codeTon Roosendaal
that's not in our svn.
2011-08-02Fixes an issue with OSX LionKent Mein
Also cleaned up the python detection for OSX Kent
2011-08-02more cmake/x11 editsCampbell Barton
- added includes for spnav - added FindSpacenav.cmake which allows using spacenav from a nonstandard path. - remove NDOF_LIBPATH, use a full library path instead.
2011-08-02NDOF related editsCampbell Barton
- fix for building without NDOF on X11 - quiet some warnings
2011-08-023D mouse support from merwin-spacenav branchMike Erwin
2011-08-02svn merge -r38814:38905 ↵merwin-spacenavMike Erwin
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-08-01add sse flags for cmake/msvcCampbell Barton
2011-07-27svn merge -r38558:38752 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-24another CMake build fix (contributed by Kevin Cozens)Mike Erwin
2011-07-22cmake - option to disable the frame serverCampbell Barton
2011-07-22enable CMake builds with spacenav (contributed by Kevin Cozens)Mike Erwin
2011-07-21svn merge -r37276:38555 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-16print an error message if Python.h can't be found for cmake and scons since ↵Campbell Barton
its such a common problem.
2011-07-13cmake option to build without smoke sim: WITH_MOD_SMOKECampbell Barton
2011-07-13Advanced CMake option to build the player without blender: WITH_BLENDERCampbell Barton
2011-07-13- don't build ghost's event printer unless ghost debug is enabled.Campbell Barton
- use char rather then STR_String for the event printer. - added option to build WITH_GHOST_DEBUG for cmake - renamed WITH_SDL_GHOST --> WITH_GHOST_SDL
2011-07-12build option to use SDL 1.3 for GHOST rather then X11/Win32/Cocoa api's,Campbell Barton
This opens up the option for blender to be more easily ported to other devices, OS's. TODO - continuous grab. - text glitch with multiple windows (was a bug in X11 too for a while, will check on this)
2011-07-11-OpenEXR fixed so enabling if user has enabledAntony Riakiotakis
-Added Iex to lib list, was causing link time errors