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
2012-03-08building without python works again, cleanup bmesh include paths (cmake and ↵Campbell Barton
scons).
2012-02-25OSX: scons: fix own mistake, truncate output of xcode-build -version to ↵Jens Verwiebe
major.minor version in config to change the var not only the print
2012-02-25OSX: scons: corrected output string of xcode-build -version, so only ↵Jens Verwiebe
major/minor version is used
2012-02-17Reverting changes made to build systems when was upgrading OpenAL.Sergey Sharybin
Reverting to openal from creative because own builds doesn't deal with 3D sound. Hopefully it wouldn't lead to crashes caused by ffmpeg+openal (for resolving which libraries were updated to openal-soft).
2012-01-17Compilation error when using mingw+sconsSergey Sharybin
Error was caused by boost library (which doesn't seem to be working with Cycles too when compiling with mingw). Switched mingw to use TR1 unordered collections. Also, there was re-declaration of strcasecmp when mingw is used. Additional changes are related on using own process spawning when BF_TOOLSET is set to mingw. Seems to be working fine now (i've got too long command line error) and no warning are supressing now (as it was told in comment for commented own process spawning).
2011-12-31option to build without remesh modifier for cmake and sconsCampbell Barton
2011-12-27Update build files to use new OpenAL librariesSergey Sharybin
2011-12-19* Changes for static win32 png libs. Thomas Dinges
2011-12-13OSX: proper scons config and linking weak for jackOSX and errorhandlingJens Verwiebe
2011-12-08Scons/CUDAThomas Dinges
* Added missing bitness info to the nvcc_flags. This makes sure that the nvcc compiler builds the correct cubins.
2011-12-01CyclesBrecht Van Lommel
* Compile all of cycles with -ffast-math again * Add scons compilation of cuda binaries, tested on mac/linux. * Add UI option for supported/experimental features, to make it more clear what is supported, opencl/subdivision is experimental. * Remove cycles xml exporter, was just for testing.
2011-11-17exclude addons_contrib/ for release builds.Campbell Barton
2011-11-14Scons: make sure fftw is enabled when ocean_mod is compiledJens Verwiebe
2011-11-13Ocean Sim modifier patchLukas Toenne
by Matt Ebb, Hamed Zaghaghi This adds a new Modifier "Ocean" to simulate large-scale wave motion. Details can be found in the wiki documentation [1], the project homepage [2] and the patch tracker [3] The modifier is disabled by default for now. To enable it, the WITH_OCEANSIM (cmake) / WITH_BF_OCEANSIM (scons) flags have to be set. The code depends on fftw3, so this also has to be enabled. [1] http://wiki.blender.org/index.php/Doc:2.6/Manual/Modifiers/Simulation/Ocean [2] http://www.savetheoceansim.com [3] http://projects.blender.org/tracker/?group_id=9&atid=127&func=detail&aid=28338
2011-11-10Whitespace tweaksJoshua Leung
2011-11-09Add compiles support for Cycles.Nathan Letwory
No CUDA compiling yet, will be added later.
2011-10-30Modifier compilation tweaks (Blender conference commit) Thomas Dinges
* Fluid compilation: Inverse the compile flag from DISABLE_ELBEEM to WITH_MOD_FLUID for consistency. (scons/cmake) * Use WITH_BF_FLUID in your user config (scons) * Add support for scons to disable build with Decimate and Boolean modifier. (WITH_BF_DECIMATE and WITH_BF_BOOLEAN)
2011-10-23Another set of UI messages fixes and tweaks! No functional changes.Bastien Montagne
2011-10-23Remove the svn:keywords property.Guillermo S. Romero
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-21cleanup scons build flags, many duplicates because because of confusion ↵Campbell Barton
between CFLAGS/CPPFLAGS/CCFLAGS/CXXFLAGS, devs would set multiple to be on the safe side. - defines go in CPPFLAGS - C & C++ flags go in CCFLAGS - CFLAGS / CXXFLAGS are C OR C++ only. also commented intended ghost unicode/ascii usage.
2011-10-21- remove release/bin/.blender/.bfont.ttf, we have ↵Campbell Barton
./release/datafiles/bfont.ttf already, and its not used anymore. - removed scons WITH_BF_FREETYPE
2011-10-21move fonts/ and locale/ dirs into release/datafiles, since blender wasn't ↵Campbell Barton
finding them in their current location and so to test international characters you had to 'make install'. updated scons/cmake/translation-scripts.
2011-10-06scons flags were being set carelessly - CCFLAGS is like setting CFLAGS and ↵Campbell Barton
CXXFLAGS - in a few cases this was being set redundantly. there are more cases that chould be changed since CPPFLAGS and CCFLAGS are both being set where only one is needed but for now this is safe.
2011-10-06revert part of r40800, btools.ENDIAN should be correct, if its not then that ↵Campbell Barton
needs to be fixed rather then checking on the platform. ./build_files/scons/tools/btools.py:68 - checkEndian() uses pythons struct which knows the systems native endian and will work unless cross compiling (which afaik isnt dont between different endian systems so far).
2011-10-05OSX: Correct copy/paste error and exclude endianess switch from darwinJens Verwiebe
2011-10-03remove .Blanguages, its not used anymoreCampbell Barton
2011-09-28OSX: solve weaklinking for non-apple compilers by using Xlinker, build also ↵Jens Verwiebe
QTKit with apple gcc, to be more compatible to distributed gnu-gcc compilers without objC, objC++ capabilities
2011-09-20Ignore .Blanguages and .bfont.ttf when installing.Sergey Sharybin
This files aren't used by blender anymore but they leads to portable install when using scons.
2011-09-20i18n: some fixes for windows, scons and game engineSergey Sharybin
2011-09-19i18n: fixes for scons datafiles installation pathesSergey Sharybin
2011-09-19svn merge -r40222:40344 ^/trunk/blenderSergey Sharybin
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-15svn merge -r39834:40222 https://svn.blender.org/svnroot/bf-blender/trunk/blenderSergey Sharybin
2011-09-15Update build rules to deal with new gettext libraries.Sergey Sharybin
2011-09-01merge with trunk r39834Xiao Xiangquan
2011-08-29Fix locale+font copy.Nathan Letwory
Wrong dir was being walked, causing the locales and font to not be copied.
2011-08-25ups, syntax error, missing :Jens Verwiebe
2011-08-25OSX: refine logic for NDOF, if WITH_BF_3DMOUSE is disabled also never do ↵Jens Verwiebe
weak-link framework, existing or not
2011-08-25OSX: fix condition for NDOF linkingJens Verwiebe
2011-08-22name mandatory driver for OSX NDOF compile - testcommit same timeJens Verwiebe
2011-08-21Fix #28154: linux3-config.py doesn't existSergey Sharybin
Change OURPLATFORM from "linux<major_version>" to simple "linux". Since new policy for linux kernel versions that major version in platform doesn't make much sense for building rules so the same rules could be used for both of linux2 and linux3 now/ Tested on both of linux2 and linux3 systems.
2011-08-12code clear, insert blf_gettext.c to blf.cXiao Xiangquan
2011-08-12remove gettext from mkaesrna, and update language packsXiao Xiangquan
2011-08-11Commiting patch from jensverwiebe for NDOF support on OSXv2.59Sergey Sharybin
2011-08-10merge with trunk r39216Xiao Xiangquan
2011-08-08Mac Compile fix for ndof, by jensverwiebe. Thanks!Thomas Dinges
2011-08-07scons patch from jensverwiebeCampbell Barton
fix a silly bug in version detection, - added an OSX sdk-check jensverwiebe, needs to get commit access!, but will apply his patches for now.
2011-08-07fixed ndof library detect for Mac SCons, ndof enabled by default (disabled ↵Mike Erwin
if lib not found), minor cleanup
2011-08-04patch from jensverwiebe to disable ndof if header is not found.Campbell Barton