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
2010-10-21Same warning suppression as with SConsNathan Letwory
2010-10-19Make C4013 throw a warningNathan Letwory
-> 'function' undefined; assuming extern returning int
2010-10-18cflags, cxxflags & linkflags in buildinfo.Campbell Barton
2010-10-18define NDEBUG for release builds so assert() is disabled.Campbell Barton
2010-10-18enable DEBUG define in CMake and scons, also change booleans debug option to ↵Campbell Barton
BOP_DEBUG, which was used inconsistently, and had to add a define for superlu.
2010-10-18remove LCMS option from cmake, this is only testing code. developers who ↵Campbell Barton
want to work on it can uncomment.
2010-10-17Test stricter GCC compiler settings, these warnings will now give errors.Campbell Barton
- implicit function declaration. - no return type set for a function. - declaration after statement. This may be too strict but in general I prefer we don't allow commits with these warnings. Applies to cmake/gcc and scons/linux.
2010-10-17- fixed remaining unused warnings.Campbell Barton
- omit render code from this warning (cmake only), until render branch is merged. - moved -Wunused-parameter warning to apply to all C code in blender (not just ./source/blender), (cmake only).
2010-10-15fix for own recent unused commit that broke with OpenMP enabled.Campbell Barton
also build ./source/ first with cmake since testing new changes are most likely to be made here.
2010-10-15enable warning for unused args with gcc: -Wunused-parameterCampbell Barton
- for cmake only apply this to source/blender, will apply globally later. - ./extern/ ./source/blender/makesrna/intern/ ignore this.
2010-10-13== docs ==Luca Bonavita
- moved files in proper directories and adapted paths where needed - deleted doc/oldbugs.txt (asked confirmation to jesterking a week ago in irc) - still working on doxygen files, for now I'll leave them in doc/ - NOTE: while checking if other files were referring to these files, I noted that "GPL-license.txt" is also used in the files below: - release/windows/installer/00.sconsblender.nsi - release/windows/specific.sh but these files should't be affected by this commit, but please check :)
2010-10-13bugfix [#24231] outliner not refreshed correctlyCampbell Barton
also made world changes only redraw the 3d view if 'Render Only' option is set.
2010-10-10enable building the game engine without bullet for scons & cmakeCampbell Barton
2010-10-06COLLADA exporter: split camera and light export into own files.Nathan Letwory
2010-10-05Enable lcms support on Windows.Nathan Letwory
2010-10-04 revert r32284, turns out OpenSuse needs this for forkpty(), also fixed ↵Campbell Barton
missing import with 3ds export.
2010-10-04cmake/mingw was missing defines.Campbell Barton
2010-10-03linking libutil isnt needed on my system, possibly this is deprecated?,Campbell Barton
testing this on other linux systems isnt so easy but will hear about it if this breaks.
2010-09-16recent fixes for mingw + cmake broke msvcCampbell Barton
2010-09-15update for MingW/CMakeCampbell Barton
- ignore MSVC warnings when FREE_WINDOWS is defined to quiet warnings. - the CMake flags were not being set correctly making blender have weirdo colors (no -funsigned-char).
2010-09-15win32 mingw works again with cmakeCampbell Barton
2010-09-12option to disable ITASC IK solver, (will be enabled by default ofcourse)Campbell Barton
- option only available to cmake, scons and make have this enabled always. - without this clang/llvm can compile blender - this was the second biggest internal lib, 192mb -> 172mb for all blenders libs (with debug flags), so gives some speedup to linking.
2010-09-07- added back zlib include (needed for win32).Campbell Barton
- use list append in more places. - remove non existing include dir.
2010-09-06- use list append in more places (preferred method since its faster)Campbell Barton
- remove some unused include paths - remove unused linux path define
2010-09-01* Don't use /ZI when 64bit building on Windows. Use /Zi instead.Nathan Letwory
* Copy files to ${BLENDER_VERSION} instead of .blender/ * Don't try to copy iconv.dll when 64bit building on Windows - it is static for 64bit.
2010-08-24rename some cmake build targetsCampbell Barton
2010-08-23cmake patch from lux-integ.Campbell Barton
2010-08-11bugfix [#23257] cmake tests for SSE, but SSE2 gets enabledCampbell Barton
patch from Vinay Pawar, some minor changes by me.
2010-08-04[#23162] GCC 4.2 and prior support broken in CMakeLists.txt as of r30985Campbell Barton
revert warning changes from r30985, broke with older GCC
2010-08-03build options to disable image formats WITH_CINEON, WITH_HDR.Campbell Barton
- updated cmake, make & scons. - renamed CMake build options WITH_TIFF -> WITH_IMAGE_TIFF, same for DDS, OPENJPEG etc.
2010-08-02cmakeCampbell Barton
- more strict warnings for gcc/unix, still <50 for a clean build. - install files to /usr/local/share/blender/2.53 rather then /usr/local/share/blender/.blender
2010-07-27patch [#23041] CMake WITH_PYTHON_INSTALL optionCampbell Barton
from Dan Eicher (dna) --- snip --- Adds the option to not copy python into the .blender/python directory. Also fixes the problem of deleting the blender installed python where the blender runtime only looks for the copied python and not the system one but not entirely sure why, something to do with CMake hardcoding the PYTHONPATH and PYTHONHOME vars I suppose. This patch only applies to the 'UNIX AND NOT APPLE' platforms but, then again, those are the only ones anyone really cares about...or at least the only ones where using the system python is really viable.
2010-07-15CMake patch from Ralf Hölzemer (cheleb)Campbell Barton
[#22849] Fix cmake install target on linux --- from the tracker --- This patch fixes the install target for the linux platform. Since the new configuration path changes are in effect, files have to be installed in the correct places instead of just copying the local installation to $PREFIX/share/blender. It also provides a new macro to determine the correct blender version values. Changes in this patch include: - the .desktop menu file is installed in $PREFIX/share/applications and points to the svg icon instead of a png one, which is also installed in $PREFIX/share/pixmaps - docs are installed in $PREFIX/share/doc/blender - scripts are installed in in $PREFIX/share/blender/x.xx/ - locales are installed in in $PREFIX/share/blender/x.xx/datafiles - a new cmake macro determines and sets the correct values for BLENDER_VERSION_MAJOR, BLENDER_VERSION_MINOR, BLENDER_SUBVERSION, BLENDER_VERSION, BLENDER_MINVERSION_MAJOR, BLENDER_MINVERSION_MINOR, BLENDER_MINSUBVERSION and BLENDER_MINVERSION by parsing source/blender/blenkernel/BKE_blender.h and calculating major/minor values. This replaces the hardcoded value in the top CMakeLists file and is used by all platforms.
2010-07-14partial fix [#22846] GCC 4.4.1 support in WindowsCampbell Barton
Still getting error: Warning: .drectve `/DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ' unrecognized
2010-07-12re-arrange build files so scons "config" dir isnt confused with ↵Campbell Barton
~/.blender/2.52/config
2010-07-12[#22817] Beta patch for cmake-MinGW compilation no 2Campbell Barton
ommit FORCE CFlags, else users cant change their cflags.
2010-07-07Fix #22219: compile error with videotexture/libavutil and recent gcc,Brecht Van Lommel
need __STDC_CONSTANT_MACROS defined.
2010-07-04Detect SSE building support with cmake, and moved setting the definesBrecht Van Lommel
out of the render mode cmake file into the main one. Should fix PPC compile, and hopefully not break others.
2010-07-03cmake: disable openexr if its not found (rather then throwing an error)Campbell Barton
2010-07-03OSX: CMake and scons default settings updated to allow build with LCMS libDamien Plisson
2010-07-01fix for building with WITH_RAYOPTIMIZATIONCampbell Barton
2010-06-24Runtime detection of SSE support for raytracing. Also enabled rayoptimizationBrecht Van Lommel
by default now on all platforms since it shouldn't crash anymore if SSE is not there. If this breaks compilation on some platforms, please let me know.
2010-06-09reverting own recent change to switch off RULE_MESSAGES since you cant see ↵Campbell Barton
which files are rebuilding.
2010-06-07minor changes to cmake, main noticable change is to disable RULE_MESSAGES ↵Campbell Barton
which gives less output with makefiles (easier to spot warnings).
2010-06-06CMake:Campbell Barton
- WITH_LCMS added option, was supported in scons. - commented web plugin option since its not maintained. - some formatting changes and removed includes that are not needed for source/creator/CMakeLists.txt.
2010-06-06* update CMake and SCons for the OpenCollada update (to r746).Nathan Letwory
- DocumentExporter changed due to function name change in API - no more UTF lib - enabled by default for win32 Note: debug libs will be added later, as well as 64bit windows libs. For other platforms, get r746 of OpenCollada and build against that.
2010-05-30mingw/cmake ffmpeg works now, update for new openexr libs which removed ↵Campbell Barton
IlmThread.
2010-05-30reverting previous commit from Mitchell. His commit went to the trunk ↵Dalai Felinto
instead of the branch :) svn merge -r 29067:29066 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-05-30Reversing the last merge because I botched it.Mitchell Stokes
2010-05-29Updated openexr for MinGWSergey Sharybin