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
2005-04-18Uncommented a line in the FREE_WINDOWS section that appears to control theChris Burt
detection of changes to dependencies. This should resolve issues with Cygwin builds using makefiles which have bizarre behavior if 'make clean' was not used before compile.
2005-04-01Since new transform and subsurf are default now.. no more need for theChris Burt
defines in the makefiles. Removed to prevent gunky buildup.
2005-03-22Added option to use new subsurf module added by Daniel Dunbar. Simply add:Chris Burt
export NAN_NEW_SUBSURF=true to your user-def.mk file.
2005-02-18I updated the FREETYPE2 checks so it didn't build freetype stuffKent Mein
if WITH_FREETYPE2 was set to false. Also added/cleaned up source/nan_compile.mk NAN_NOKETSJI stuff a hair. Kent
2005-02-14To compile the new transform code with make, add the following toChris Want
user-def.mk: export NAN_NEW_TRANSFORM=true
2004-12-08Essential cleanup for mess involved with reading files, initializing UI andTon Roosendaal
patching versions for UI settings. Currently four different levels of routines for .blend file reading exist; /* interface level */ 1) BIF_init() -> calls 3 2) BIF_read_file() -> calls 11, optional 4 3) BIF_read_homefile() -> calls 11 or 12, and then 4 4) init_userdef_file() /* kernel level */ 11) BKE_read_file() -> calls 21, and then 14 12) BKE_read_file_from_memory() -> calls 22, and then 14 13) BKE_read_file_from_memfile() -> calls 23, and then 14 14) setup_app_data() /* loader module level */ 21) BLO_read_from_file() -> calls 24 22) BLO_read_from_memory() -> calls 24 23) BLO_read_from_memfile() -> calls 24 /* loader module, internal */ 24) blo_read_file_internal() Note: - BIF_read_homefile() has additional UI initialize calls, like windows fullscreen and executing commandline options - Reading from memory (12) only happens for the compiled-in .B.blend - The "memfile" here is a name I gave to the undo "file" structure. Which is constructed out of memory chunks with basic compression features. - the kernel function setup_app_data() sets globals like "current screen" and "current scene". So far, so good. The levels as mentioned here clearly distinguish UI from kernel, and should enable for example game loading (runtime) or background (no UI) loading. In the past years however, 'bad level' dependencies were added, and especially the patches for 'file versions' were added in too many places. The latter is evidently a result of the problem that the "UserDef" struct cannot be initialized/patched if there's not a need for a UI. Here's how the flow goes in four different cases: ----- Starting up Blender, in foreground with UI -------------------- - creator/creator.c, main() -> calls 1 - If the commandline contains a filename, it calls 11 ----- Starting up Blender, in background without UI -------------------- - creator/creator.c, main() -> calls 11 if the commandline has a filename Note: no Userdef is read, nor initialized. Please note that this was already an existing problem for using Yafray, not setting proper file paths in background mode. The Yafray paths don't belong in the User menu. ----- Starting up Blender as a runtime executable -------------------- This only has calls to 22 ----- Loading a file from within the UI (with F1, CTRL+O, using pulldowns) ----- Only calls allowed to 2. It detects if a UserDef has been read too, and in that case the init_userdef_file() will be executed. Hope this is understandable :) -Ton-
2004-11-14Update make system for darwin;Ton Roosendaal
- using python framework (default on, set it off with define in definitions.mk) - not installing .bfont.tff
2004-05-01Changes for OSX compiling with Makefiles;v2.33Ton Roosendaal
- support 2.3 python - use -O2 for all - fixed reference to SOLID.h
2004-04-02Lowered optimization for solaris gcc to -O1Kent Mein
this is for bug # 1052 Basically the higher optimization causes blender to choke on the provided blend file. Kent
2004-03-29A fix for the MIPSPro 7.4 compiler ... please let me know if thereChris Want
are problems with 7.3.
2004-03-29Makefile support for solid -- assumes solid and qhull are in the libChris Want
dir, i.e., ../lib/your_platform/{solid|qhull}.
2004-03-21Added 2 options to the Makefiles (enable in environment, user-def.mk,Chris Want
or whatever): NAN_NO_KETSJI: when set to true, disables compilation of the game engine. NAN_JUST_BLENDERDYNAMIC: when set to true, only dynamic executable is build (i.e., no plugin, etc). Note that NAN_NO_KETSJI implies NAN_JUST_BLENDERDYNAMIC.
2003-12-27 Another bad flag. Mea Culpa.Robert Wenzlaff
2003-12-27 Accidently committed local flags. Bad coder.Robert Wenzlaff
2003-12-26Commit of cursor framework. Cursors now defined in ↵Robert Wenzlaff
source/blender/src/cursors.c and source/blender/include/BIF_cursors.h. Allows large cursors on Win32 and X11. See cursors.c for documentatioin on how to use.
2003-08-04Irix mips3 build, Part 2Chris Want
Ensuring that the build uses the rebuilt mips3 libs. Please test!
2003-05-25Some tweaks to make the windows-gcc play nice with irix.Chris Want
2003-05-25Support for building bf-blender under windows with gcc (huge thanks toChris Want
Florian Eggenburger). Full instructions are in doc/README.windows-gcc. Main differences from Florian's patch: - the 'lib' dir should now be the same level as the 'blender' dir (rather than being a subdir of 'blender'). This is consistent with the other platforms that bf-blender supports (tuhopuu will also adopt this convention hopefully soon). - the script 'free_windows-env.mk' is no longer needed ... see the docs about how this is overcome (again, tuhopuu will hopefully also follow this route soon). - the dlltool dir has it's own Makefile that builds all of the needed stub libraries from the dll's in cvs.
2002-12-20Added the the magic compiler flag that will turn on game-engine integration ↵Maarten Gribnau
with Blender. The line is commented by default as was discussed on the list. Maarten
2002-11-12Changed -O3 to -O2 under linuxKent Mein
2002-10-12Initial revisionv2.25Hans Lambermont