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-15OSX/cmake: enable clang compiler with xcode >= 4.3, tested o.k.nowJens Verwiebe
2012-03-14Avoid a sigsev after 44830 when reports is empty, clang compile workJens Verwiebe
2012-03-14documentation edit to address bmesh py api bug [#30453]Campbell Barton
warn when addons are not found when running cmake.
2012-03-14print warning when release/datafiles/locale is missing when building with ↵Campbell Barton
cmake (git-svn causes this).
2012-03-13WITH_GHOST_SDL working again (missing std:: update)Campbell Barton
2012-03-13bmesh py api: more comprehensive intro page, also fix some spelling errors.Campbell Barton
2012-03-12OSX/cmake: use again 10.5 as general deployment target ( pls verify 10.5 ↵Jens Verwiebe
compatibility works with automatic weaklinking), use now then sdk which for sure exists, remove obsolete slash
2012-03-11Bundle new upstream version of libmv from own branchSergey Sharybin
This version of libmv includes new gflags and glog libraries which makes it possible to compile libmv with clang compiler. Also remove code from CMakeLists which was disabling libmv if using clang. Tested on linux with gcc-4.6 and clang-3.0, windows cmake+msvc and scons+mingw. Could be some issues with other platforms/build system which shall be simple to resolve.
2012-03-10OSX/cmake: added a comment on method usedJens Verwiebe
2012-03-10OSX/cmake: ensure newest Xcode compatibility, important: still needs a ↵Jens Verwiebe
patched cmake ( see error you will get if missed ), patched cmake provided here: http://www.jensverwiebe.de/Blender/CMake%202.8-7patched.zip
2012-02-28revert r44503, (left patch file in for now), this gives an error with gcc:Campbell Barton
extern/libmv/third_party/glog/src/utilities.cc:318: error: undefined reference to 'google::InstallFailureFunction(void (*)())'
2012-02-26Change boost librarie names for MinGW to use the recently added librariesAntony Riakiotakis
2012-02-25code cleanupCampbell Barton
* correct cmake/clang warning. * use same include guard names as everywhere else for BLI math inline. * correct define for madd_sh_shfl
2012-02-21Fix #30270, #30265: cycles not displaying textured objects, and not renderingBrecht Van Lommel
text/curve objects after the bmesh merge. Also removed a debug print.
2012-02-20Fix cmake warning on Mac, when not using Xcode generator.Brecht Van Lommel
2012-02-18XDND support now can be disabled using WITH_GHOST_XDND=OFF with CMake and ↵Sergey Sharybin
WITH_GHOST_XDND=False with SCons Disabled on FreeBSD platforms due to some linking errors.
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-02-09patch from Jochen Schmitt to get blender building with gcc4.7Campbell Barton
2012-02-02own attempted simplification to previous patch was incorrect.Campbell Barton
2012-02-02patch from Peter Stern to fix CMake building on OSX (without manual editing ↵Campbell Barton
of configuration)
2012-01-17OSX/Cmake: make bpy module work finally by linking against python3.2 frameworkJens Verwiebe
2012-01-16Carve booleans library integrationSergey Sharybin
================================== Merging Carve library integration project into the trunk. This commit switches Boolean modifier to another library which handles mesh boolean operations in much stable and faster way, resolving old well-known limitations of intern boolop library. Carve is integrating as alternative interface for boolop library and which makes it totally transparent for blender sources to switch between old-fashioned boolop and new Carve backends. Detailed changes in this commit: - Integrated needed subset of Carve library sources into extern/ Added script for re-bundling it (currently works only if repo was cloned by git-svn). - Added BOP_CarveInterface for boolop library which can be used by Boolean modifier. - Carve backend is enabled by default, can be disabled by WITH_BF_CARVE SCons option and WITH_CARVE CMake option. - If Boost library is found in build environment it'll be used for unordered collections. If Boost isn't found, it'll fallback to TR1 implementation for GCC compilers. Boost is obligatory if MSVC is used. Tested on Linux 64bit and Windows 7 64bit. NOTE: behavior of flat objects was changed. E.g. Plane-Sphere now gives plane with circle hole, not plane with semisphere. Don't think it's really issue because it's not actually defined behavior in such situations and both of ways might be useful. Since it's only known "regression" think it's OK to deal with it. Details are there http://wiki.blender.org/index.php/User:Nazg-gul/CarveBooleans Special thanks to: - Ken Hughes: author of original carve integration patch. - Campbell Barton: help in project development, review tests. - Tobias Sargeant: author of Carve library, help in resolving some merge stoppers, bug fixing.
2012-01-12Some small fixes to get things compiling on solaris with cmake.Kent Mein
There are also some changes that need to be done to libmv but I'm leaving those out so I can get it patched upstream first. (Only works with gcc/g++ if we want to use sun's compiler we would need to get rid of all of our annonymous structs which I don't think we want to do at this point, example: typedef struct wmNDOFMotionData { union { float tvec[3]; // translation struct { float tx, ty, tz; }; // this would need to be fixed // something like this or something similar: struct { float x, y, z; } t; }; ... ) Kent
2012-01-12../lib/linux wont built with theoraenc theoradec unbuntu user also ↵Campbell Barton
complained that this failed to link. Im not sure whats best default here, removing for now. if it gives more problems we could have a FindTheora module.
2012-01-11Added mode-getting functions for GHOST under X11 (GNU/Linux).Alex Fraser
Enabled xvidmode by default in cmake. Patch approved by Campbell.
2012-01-06use warnigns for all msvc configurationsCampbell Barton
2012-01-05disable recent attempt to static link mingw DLL's causes errors for some users.Campbell Barton
also remove break statement, mistake on last commit.
2012-01-05link mingw libstdc++ and libgcc libs statically so users dont need mingw ↵Campbell Barton
installed to use mingw builds
2012-01-02Mode switching for GHOST under X11: adds the ability to change screen ↵Alex Fraser
resolutions in the blenderplayer on GNU/Linux. Code ported from Quake 2.
2012-01-02left out one tiny word...Tom Musgrove
2012-01-02part of line missing in Jens commit, this fixes compile on non Apple ↵Tom Musgrove
platforms, thanks to Lockal in IRC for pointing it out
2012-01-01OSX: fix compile by conditional unsupported flagsJens Verwiebe
2011-12-31option to build without remesh modifier for cmake and sconsCampbell Barton
2011-12-31Patch is partially made by Pelle Johnsen. Thanks!Alexander Kuznetsov
This patch enables search for specific libraries for vc2010 using "set_lib_path" macro If *x* library or path exists in lib/win___/vc2010/*x* , vc2010 will use it. If not, compiler will use standard libraries. It can be easily extended to gcc. The function is enabled for: openCollada openExr Python openImageIO The different libraries are needed for different compilers because C++ was used. There is no standard for lib's C++ structure/functions' names. Actual libs will follow
2011-12-27Update build files to use new OpenAL librariesSergey Sharybin
2011-12-24Re-enable CYCLES and OpenEXR since they work for MInGW. IMPORTANT: Only use ↵Antony Riakiotakis
the latest MinGW to compile blender.
2011-12-23give errors when using unsupported configurations with mingw`Campbell Barton
2011-12-19* Changes for static win32 png libs. Thomas Dinges
2011-12-19Fix for cmake for recent mingw png lib move. Thomas Dinges
2011-12-03Enables vc 2010 boost libraries for cmakeAlexander Kuznetsov
2011-11-13rename cmake WITH_OCEANSIM --> WITH_MOD_OCEANSIM and tag ↵Campbell Barton
CYCLES_CUDA_BINARIES_ARCH as advanced.
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-12Cycles: more linux build system tweaks, attempting to avoid using boostBrecht Van Lommel
system libraries by default if we have a lib/ directory.
2011-11-11Cycles: fix wrong openimageio path for lib/ directory.Brecht Van Lommel
2011-11-11CMake/Scons: automatically use ffmpeg, boost and openimageio from the svn lib/Brecht Van Lommel
directory if available, which should make building with ffmpeg and cycles easier. If this folder is not available or another path is specified in user-config.py or CMakeCache.txt, this should have no effect. Wiki build instructions now show how to use these. http://wiki.blender.org/index.php/Dev:2.5/Doc/Building_Blender/Linux
2011-11-10Cycles:Brecht Van Lommel
* Add back option to bundle CUDA kernel binaries with builds. * Disable runtime CUDA kernel compilation on Windows, couldn't get this working, since it seems to depend on visual studio being installed, even though for this particular case it shouldn't be needed. CMake only at the moment. * Runtime compilation on linux/mac should now work if nvcc is not installed in the default location, but available in PATH.
2011-11-10presets now work from non-redo popups,Campbell Barton
ended up having to add a new pointer into the uiBlock (which I'd rather have avoided), but setting the uiLayoutSetContextPointer(..) was complicated to properly use for submenus and popus.
2011-11-09Cycles: cmake tweaks for linux build, instructions on the wiki no longer worked.Brecht Van Lommel
2011-11-08stop cmake from overwriting BOOST_ROOT and OPENIMAGEIO_ROOT_DIR which the ↵Campbell Barton
builder is supposed to be able to set.
2011-11-08Cycles Merge:Brecht Van Lommel
* It seems we have a problem compiling the CUDA kernel at runtime on Windows, will need to investigate more how to solve this best, CPU render should go fine though. * Change OPENIMAGEIO to OPENIMAGEIO_ROOT_DIR on linux for consistency.