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
2002-12-22Rewired python for OSX. The Makefiles now use the Python that comes with OSXMaarten Gribnau
in /usr/local. mxTextTools is still disabled because of a link error. Maarten
2002-12-20This is sort of a two parter from the mailling list but really its theKent Mein
same thing: Added the xpcom include and added a flag to use mozilla vs netscape. Which basically adds some ifdefs to _Blender3DPlugin_implementation_.cpp Basically I modified the nan_definitions.mk in the following way (You'll need to update yours don't forget) ;) Also updated the makefiles to use the new vars and flushed them out so they first include whatever nspr is set to and then look in NAN_MOZILLA_INC I wasn't sure what the NAN_MOZILLA_INC and _LIB defaults should be since were assuming they point to a netscape dir by default (or maybe old mozilla???) maybe they should be export NAN_MOZILLA_INC ?= $(LCGDIR)/netscape/include export NAN_MOZILLA_LIB ?= $(LCGDIR)/netscape/lib/ instead... Anyone have any opinions on the defaults? Kent -- mein@cs.umn.edu Index: nan_definitions.mk =================================================================== RCS file: /cvs01/blender/source/nan_definitions.mk,v retrieving revision 1.8 diff -u -r1.8 nan_definitions.mk --- nan_definitions.mk 2002/12/19 21:12:58 1.8 +++ nan_definitions.mk 2002/12/20 19:28:51 @@ -75,7 +75,13 @@ export NAN_TEST_VERBOSITY ?= 1 export NAN_ZLIB ?= $(LCGDIR)/zlib export NAN_BMFONT ?= $(LCGDIR)/bmfont - export NAN_MOZILLA ?= $(LCGDIR)/mozilla + # Uncomment the following line to use Mozilla inplace of netscape + # CPPFLAGS +=-DMOZ_NOT_NET + # Location of MOZILLA/Netscape header files... + export NAN_MOZILLA_INC ?= $(LCGDIR)/mozilla/include + export NAN_MOZILLA_LIB ?= $(LCGDIR)/mozilla/lib/ + # Will fall back to look in NAN_MOZILLA_INC/nspr and NAN_MOZILLA_LIB + # if this is not set. export NAN_NSPR ?= $(LCGDIR)/nspr
2002-12-20Overrided NAN_ODE in OSX to point to the precompiled ode lib in the lib tree.Maarten Gribnau
Maarten
2002-11-13Committing LarstiQ's patch for NAN_PYTHON_BINARY and NAN_MXTEXTTOOLSKent Mein
It worked on my system and no one else has said anything. Kent -- mein@cs.umn.edu
2002-11-05Brought back the sumo physics controllers and undid game engine make fileMaarten Gribnau
changes. Instead modified the top level nan_definitions.mk to point the NAN_SUMO and NAN_FUZZICS to the right locations. Maarten
2002-11-04Added specific external libary locations for OSX/darwin that override theMaarten Gribnau
defaults in the lib tree (see instructions in ../readme.txt). Maarten (mail@maartengribnau.com)
2002-10-31I made a little readme to get people started and modified theKent Mein
nan_definitions.mk to setup NANBLENDERHOME and everything is under that directory. also add empty dirs for lib and obj. Try it out and feel free to make improvements. mein@cs.umn.edu
2002-10-18First checkin of core ODE functionality. See OdePhysicsController.cpp for a ↵Norman Lin
todo list.
2002-10-12Initial revisionv2.25Hans Lambermont