[Bf-blender-cvs] CVS commit: blender SConstruct blender/intern/SoundSystem SConscript blender/intern/bmfont SConscript blender/intern/bsp SConscript blender/intern/container SConscript blender/intern/decimation SConscript blender/intern/ghost ...

Michel Selten michel.s at home.nl
Sun Feb 29 22:40:48 CET 2004


michel (Michel Selten) 2004/02/29 22:40:48 CET

  Modified files:
    .                    SConstruct 
    blender/intern/SoundSystem SConscript 
    blender/intern/bmfont SConscript 
    blender/intern/bsp   SConscript 
    blender/intern/container SConscript 
    blender/intern/decimation SConscript 
    blender/intern/ghost SConscript 
    blender/intern/guardedalloc SConscript 
    blender/intern/iksolver SConscript 
    blender/intern/memutil SConscript 
    blender/intern/moto  SConscript 
    blender/intern/string SConscript 
    blender/source/blender/avi SConscript 
    blender/source/blender/blenkernel SConscript 
    blender/source/blender/blenlib SConscript 
    blender/source/blender/blenloader SConscript 
    blender/source/blender/blenpluginapi SConscript 
    blender/source/blender/deflate SConscript 
    blender/source/blender/ftfont SConscript 
    blender/source/blender/imbuf SConscript 
    blender/source/blender/img SConscript 
    blender/source/blender/inflate SConscript 
    blender/source/blender/makesdna SConscript 
    blender/source/blender/makesdna/intern SConscript 
    blender/source/blender/python SConscript 
    blender/source/blender/quicktime SConscript 
    blender/source/blender/radiosity SConscript 
    blender/source/blender/readblenfile SConscript 
    blender/source/blender/readstreamglue SConscript 
    blender/source/blender/render SConscript 
    blender/source/blender/renderconverter SConscript 
    blender/source/blender/src SConscript 
    blender/source/blender/writeblenfile SConscript 
    blender/source/blender/writestreamglue SConscript 
    blender/source/blender/yafray SConscript 
    blender/source/creator SConscript 
    blender/source/gameengine/BlenderRoutines SConscript 
    blender/source/gameengine/Converter SConscript 
    blender/source/gameengine/Expressions SConscript 
    blender/source/gameengine/GameLogic SConscript 
    blender/source/gameengine/Ketsji SConscript 
    blender/source/gameengine/Ketsji/KXNetwork SConscript 
    blender/source/gameengine/Network SConscript 
    blender/source/gameengine/Network/LoopBackNetwork SConscript 
    blender/source/gameengine/Physics/BlOde SConscript 
    blender/source/gameengine/Physics/Dummy SConscript 
    blender/source/gameengine/Physics/Sumo SConscript 
    blender/source/gameengine/Physics/common SConscript 
    blender/source/gameengine/Rasterizer SConscript 
    blender/source/gameengine/Rasterizer/RAS_OpenGLRasterizer 
                                                              SConscript 
    blender/source/gameengine/SceneGraph SConscript 
    blender/source/kernel SConscript 
  
  Log:
  SCons updates
  * Blender static now links. By default this option is disabled on all
    platforms. Simply set the option in config.opts to 'true'.
  * Added the following flags to config.opts:
    - HOST_CC.    This is the C compiler for the host platform. This value is the
                  same as TARGET_CC when not cross compiling.
    - HOST_CXX.   This is the C++ compiler for the host platform. This value is
                  the same as TARGET_CXX when not cross compiling.
    - TARGET_CC.  This is the C compiler for the target platform.
    - TARGET_CXX. This is the C++ compiler for the target platform.
    - TARGET_AR.  This is the linker command for linking libraries.
    - PATH        This is the standard search path
    All SConscript files have been updated to reflect these changes. Now it's
    possible to change only the root SConstruct file, and all compiler specific
    variables are passed automatically to all SConscript files. Of course, this
    does not apply to makesdna because there the host and target platform is
    different from all other libraries.
    To pass a variable that applies to all platforms, all we now have to do is
    set the correct value in library_env
  
  Note: as usual, to get the latest options in the config.opts file, first
        remove your version.
  
  Revision  Changes    Path
  1.23      +39 -6     blender/SConstruct
  1.5       +2 -10     blender/intern/SoundSystem/SConscript
  1.3       +3 -9      blender/intern/bmfont/SConscript
  1.3       +3 -9      blender/intern/bsp/SConscript
  1.3       +3 -9      blender/intern/container/SConscript
  1.3       +3 -9      blender/intern/decimation/SConscript
  1.3       +3 -9      blender/intern/ghost/SConscript
  1.3       +3 -9      blender/intern/guardedalloc/SConscript
  1.3       +3 -9      blender/intern/iksolver/SConscript
  1.3       +3 -9      blender/intern/memutil/SConscript
  1.3       +3 -9      blender/intern/moto/SConscript
  1.3       +3 -9      blender/intern/string/SConscript
  1.4       +3 -9      blender/source/blender/avi/SConscript
  1.4       +3 -9      blender/source/blender/blenkernel/SConscript
  1.5       +3 -9      blender/source/blender/blenlib/SConscript
  1.3       +3 -9      blender/source/blender/blenloader/SConscript
  1.3       +3 -9      blender/source/blender/blenpluginapi/SConscript
  1.4       +3 -9      blender/source/blender/deflate/SConscript
  1.7       +3 -8      blender/source/blender/ftfont/SConscript
  1.5       +3 -9      blender/source/blender/imbuf/SConscript
  1.3       +3 -9      blender/source/blender/img/SConscript
  1.4       +3 -10     blender/source/blender/inflate/SConscript
  1.3       +3 -9      blender/source/blender/makesdna/SConscript
  1.7       +3 -2      blender/source/blender/makesdna/intern/SConscript
  1.7       +5 -11     blender/source/blender/python/SConscript
  1.3       +4 -9      blender/source/blender/quicktime/SConscript
  1.3       +3 -9      blender/source/blender/radiosity/SConscript
  1.3       +3 -9      blender/source/blender/readblenfile/SConscript
  1.4       +3 -9      blender/source/blender/readstreamglue/SConscript
  1.4       +3 -9      blender/source/blender/render/SConscript
  1.3       +3 -9      blender/source/blender/renderconverter/SConscript
  1.8       +3 -9      blender/source/blender/src/SConscript
  1.4       +3 -9      blender/source/blender/writeblenfile/SConscript
  1.4       +3 -9      blender/source/blender/writestreamglue/SConscript
  1.4       +3 -9      blender/source/blender/yafray/SConscript
  1.2       +3 -8      blender/source/creator/SConscript
  1.4       +3 -9      blender/source/gameengine/BlenderRoutines/SConscript
  1.4       +3 -9      blender/source/gameengine/Converter/SConscript
  1.4       +3 -9      blender/source/gameengine/Expressions/SConscript
  1.4       +3 -9      blender/source/gameengine/GameLogic/SConscript
  1.4       +3 -9      blender/source/gameengine/Ketsji/SConscript
  1.4       +3 -9      blender/source/gameengine/Ketsji/KXNetwork/SConscript
  1.3       +3 -9      blender/source/gameengine/Network/SConscript
  1.3       +3 -9      blender/source/gameengine/Network/LoopBackNetwork/SConscript
  1.5       +3 -9      blender/source/gameengine/Physics/BlOde/SConscript
  1.3       +3 -9      blender/source/gameengine/Physics/Dummy/SConscript
  1.3       +5 -11     blender/source/gameengine/Physics/Sumo/SConscript
  1.3       +3 -9      blender/source/gameengine/Physics/common/SConscript
  1.3       +3 -9      blender/source/gameengine/Rasterizer/SConscript
  1.3       +3 -9      blender/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/SConscript
  1.3       +3 -9      blender/source/gameengine/SceneGraph/SConscript
  1.3       +3 -9      blender/source/kernel/SConscript



More information about the Bf-blender-cvs mailing list