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-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-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-11Commiting patch from jensverwiebe for NDOF support on OSXv2.59Sergey Sharybin
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
2011-08-03- Move list of FFmpeg DLLs to be installed from SConstructSergey Sharybin
to conficuration variable BF_FFMPEG_DDL. This would allow to use different FFmpeg in buildbot. - Added some 3DMOUSE variables to list of command line options. Now 3dmouse related-settings can be set from command line.
2011-08-02Simple argument to be able to explicitely tell the bitness you want to build ↵Nathan Letwory
Blender in. python scons\scons.py BF_BITNESS=32 python scons\scons.py BF_BITNESS=64 So from now on for Windows you don't have to run a specific win32 or win64 Python version to get the Blender version you want. If you omit the BF_BITNESS flag the bitness as per Python version will be used as before. Note that this is an argument, so works *only* on the command-line, not in your user-config.py
2011-08-02 - Blender could be build with scons again.Jiri Hnidek
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-06-23cmake option to build without an audio library.Campbell Barton
2011-06-08Shuffle some build code around to ensure debug builds on Windows actually ↵Nathan Letwory
run too. * creator/SConscript is now empty, code is moved to an emitter function in Blender.py * make sure COLLADA debug libs are used when BF_DEBUG=True
2011-05-07Code cleanup: remove source/kernel module, this wasn't really the kernel ofBrecht Van Lommel
anything, only contained a hash map and functions to pass command line args to the game engine. Moved those to container and BlenderRoutines modules.
2011-03-29Apply [#26044] Windows thumbnails and improved filetype registrationNathan Letwory
submitted by Tom Edwards Fix [#25473] 64bit Windows installer for version 2.56 is not working patch submitted by Caleb (Dobz) The thumbnail patch adds a thumb handler DLL that adds .blend thumbnail support in Windows Explorer. A -r option is added to do registration in background. The patch also improves icon building and metadata for blender.exe. Caleb fixes and cleans up our installer to an acceptable state. The patch uses the new -r option to do the .blend extension and thumbnailer registration. Thanks to both Caleb and Tom for their efforts!
2011-03-22Add buildslave target for builder.blender.org integrationNathan Letwory
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-09ignore __pycache__ dir for scons and cmake installation (py3.2 caches ↵Campbell Barton
modules here).
2011-01-27And on your left you can see something much nicer (while I fix this here on ↵Nathan Letwory
your right).
2011-01-27Commit to cope with API changes in OpenCOLLADA (latest for Windows right now ↵Nathan Letwory
r827).
2011-01-17test commit for svn link in commit mail, part twoNathan Letwory
2011-01-17test commit for svn link in commit mailNathan Letwory
2010-12-27Compiling and linking blenderplayer statically now works too. This brings it ↵Nathan Letwory
in line with blender linking line. Small patch by Sergey Sharybin
2010-12-21Workaround for blenderplayer not linking on linux with scons.Nathan Letwory
Maybe as a next big, uncool project would be: solve bad level calls.
2010-10-27Make sure plugins/ goes under shortversion/ dirNathan Letwory
2010-09-15Fix SCons for [#23833]. Ensure that empty dirs will exist too.Nathan Letwory
2010-08-30Finally change SConscript tabs to spaces.Nathan Letwory
2010-08-26Patch [#23389] Add authorship information to exported COLLADA filesNathan Letwory
Contributed by Imran Syed (freakabcd). This adds basic authoring tool and author info ("Blender User" for now). NOTE: Linux and OSX users need now to update their OpenCOLLADA libs - Blender should now compile fine with their latest revision. Made some changes to the original patch to ensure linking is done correctly. Some small cleanups for scons too.
2010-08-22Skip also SVN administration files that start with _ instead of .Nathan Letwory
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-02SConsCampbell Barton
- remove scons option WITH_BF_FHS, its not needed anymore. - comment WITH_BF_DOCS, was using epydocs which we dont use now. - blenderlite target was broken, always using openmp. - building without python wasnt working. - fixed some warnings.
2010-07-19libjack.dll not needed anymoreNathan Letwory
2010-07-19- Use correct paths for mstoolkit and crossmingw tools in sconscriptSergey Sharybin
- Use _stat64i32 instead of _stat in BLI_exist Needed for correct compilation by mingw, no sense for msvc (_stat is equivalent to _stat64i32 in Visual C++ 2005, and later i suppose) - Added library msvcr90 for mingw to solve linking error to _stat64i32
2010-07-14Make SConstruct look in build_files/scons/tools and import from there, so no ↵Nathan Letwory
more 'import tools.Blender'. This fixes problem after change to this new location, but with .pyc files still lingering in old tools/ directory that still got imported due to syspath form.
2010-07-12re-arrange build files so scons "config" dir isnt confused with ↵Campbell Barton
~/.blender/2.52/config
2010-07-05== SCons ==Nathan Letwory
Updated to comply with datafiles filepath patch. I've tried to do some changes for OSX too, but I'm not sure if they're correct, so OSX people, please test and report.
2010-07-04Patch [#22339] File/installation paths changesAndrea Weikert
Patch Tracker: http://projects.blender.org/tracker/?func=detail&aid=22339&group_id=9&atid=127 This patch implements the proposal outlined here: http://wiki.blender.org/index.php/Dev:2.5/Source/Installation/Proposal Original patch by Matt Ebb. Contributions by Nathan Letwory, Damien Plisson and Andrea Weikert NOTE: This is a work in progress commit, some work still needs to be done on the SCons and CMake files for this to work properly, but at least should compile and the files should be created in the right directory. Commit discussed on IRC with Ton and Campbell.
2010-06-05Show whether BF_DEBUG=1 or 0 in output.Nathan Letwory
2010-06-03disable openmp for blenderlite scons targetCampbell Barton
2010-05-30remove non-informative printNathan Letwory
2010-05-26Copy zlib.dll for win64 too.Nathan Letwory
2010-05-24Changes for static linking to libtiff when compiling by MinGW:Sergey Sharybin
- Use static tiff libraries from lib/windows/gcc in scons configuration files - Commented libtiff.dll installation in SConstruct
2010-05-24Fixes for cross-compilation:Sergey Sharybin
- Set env['CC'] and env['CXX'] as default values for CC and CXX variables. This fixes problem with overwriting auto-guessed compilators when reading config files - Added new prefix for mingw tools
2010-03-08scons build systemsKen Hughes
------------------- Revert inadvertent ffmpeg changes.
2010-03-08scons build systemsKen Hughes
------------------- Allows static libs to be passed correctly to the linker (i.e., full paths to libs which end in ".a" are passed to linker without processing). I've been using this on linux release builds since sometime around 2.49 without problem but hesitated to commit since I don't know if it would affect any other platforms. If you're using static libs on another platform and it breaks, let me know.