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
2003-11-22A couple of files I left in the intern/python dir needed to be removed asMichel Selten
well. To remove the directories on your system, do a: cvs update -P
2003-11-22First action of removing the old Python API stuff from cvs. Removed theMichel Selten
/intern/python stuff. To remove the directories on your system, do a: cvs update -P
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.
2003-05-01dos2unixed relivant stuff in the interndir.Kent Mein
I'll wait a couple of days and if no complaints do the other dirs as well. Kent
2003-03-26Added a -D option to freeze.py to cause it to not check to see if certainDaniel Dunbar
directories exist. They don't exist for a standard Python 2.3 installation but they aren't needed either... this is really a hack, I wish someone who understood the freeze process better could look at this.
2003-03-25On OSX, run ranlib on libfrozen.a after creationWouter van Heyst
2003-03-22Modified it to use $(NAN_PYTHON_BINARY) instead of just plain oldKent Mein
python. (otherwise why have the env var?) ;) Kent
2003-03-18Rest of the VC7 intern projectfiles.Daniel Dunbar
2003-02-24- python include path is now taken from nan_definitions.mkFrank van Beek
2003-02-17- fix 'debug' targetHans Lambermont
- add ID and copyrights to top level makefile
2003-02-10fix clean targetHans Lambermont
2003-02-06Revert to the FUTURE_PYTHON_API, this means:Wouter van Heyst
- switching the define on in buildsystems (NaN, auto and msvc are done) - again import _Blender, which is the C module, from the Python modules
2003-02-01This small update should fix the build errors in python/freeze.Michel Selten
I added a check if the output directory (../frozen) exists and will create the directory if it does not exist. This time I tested it also with the NaN make environment :) Michel
2003-01-31Now the make freeze is done when any of the *.py files in intern/pythonMichel Selten
is updated. * modulefinder creates a file src.list which contains all the *.py files needed for the python suport in Blender. * Makefile.am is able to depend on the files listed in src.list. * makemakefile_ac.py is reverted to the previous version. The old version contained my first attempt to get the make freeze trick working. It was wrong. Michel
2003-01-26- files are now compiled in a different location. So the include pathFrank van Beek
to Python.h had to be adjusted
2003-01-26Get the Blender module back using the traditional makefiles, otherWouter van Heyst
build systems (auto, msvc, PB) do not seem to have this problem. - Change intern/python/freeze/Makefile to freeze outside of the source/ tree - Change source/blender/bpython/Makefile to not build the frozen stuff anymore - Change source/blender/bpython/intern/Makefile to use CURRENT_PYTHON_API instead of FUTURE_PYTHON_API, damage control
2003-01-06Removed references to modules that do not exist. The python interface isMichel Selten
broken, but it should give 0 errors when building. Michel
2003-01-06on Mac OS X run ranlib on libfrozen.a after creating itStefan Gartner
2003-01-04libfrozen will be built only once until one of the python files is changed.Michel Selten
Michel
2003-01-04- when compiling on windows, override CC=gcc with CC=..../cl_wrapper.plFrank van Beek
and use the Python.h in the lib/windows/python/include directory. MSVC++ doesn't like linking with a gcc compiled frozen library.
2003-01-01A kludge to use the right compiler while freezingChris Want
using gcc under Irix -- without this it uses only 'cc -n32' (since this is what the sgi employee who compiled the python stuff used). Chris
2002-12-30small correction to temporary and output directoryMaarten Gribnau
Maarten
2002-12-23Removed fixed path for Python excutable.Maarten Gribnau
The README will explain how to set an option in MSVC to make it find python. Maarten
2002-12-02These freeze changes give working frozen Python code on Windows.Maarten Gribnau
Maarten
2002-12-02Removed non-existing Tools from the Blender module.Maarten Gribnau
This allowed me to get Python working in Blender. Maarten
2002-11-30Reverting to version 1.3 - michelMichel Selten
2002-11-30added -f option to the rm command. (Clean target) - michelMichel Selten
2002-11-30Autotools-specific freeze_ac.py and makemakefile_ac.py. Original ↵Frederick Lee
makemakefile.py reverted for sake of original build system. Makefile.am modified accordingly.
2002-11-29Bunch of small fixes emailed to me from phaethonKent Mein
Kent -- mein@cs.umn.edu
2002-11-25Yes I did it again ;)Kent Mein
added the following 3 lines to everything in the intern dir: #ifdef HAVE_CONFIG_H #include <config.h> #endif Kent -- mein@cs.umn.edu
2002-11-15Some more clean up in the intern MSVC project files.Maarten Gribnau
Renamed the bmfont project files and updated them. Maarten
2002-11-14Changed module name utils to util so that freeze will find the quaternionsMaarten Gribnau
etc. there. Maarten
2002-11-12Made a dependency so that the MSVC intern project file will actually call theMaarten Gribnau
batch file that freezes the Blender Python code. I had to add a dummy.cpp file to the freeze directory to make MSVC understand it should call the batch file in a post build step. If someone else has a better idea, feel free to change it! Maarten
2002-11-12- python $(PYFLAGS) freeze.py -d -x os -x pprint -x Blender -I ↵Kent Mein
$(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py + python $(PYFLAGS) freeze.py -d -x os -x pprint -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py Freeze the Blender module (I got this from some other people on #blendersauce and truthfully I have no idea if this is correct or not so if someone else could look at it that would be great) Kent -- mein@cs.umn.edu
2002-11-11Added another project to freeze Blender Python code from the main internMaarten Gribnau
MSVC workspace. It is not finished completely but it works (through a batchfile). Maarten
2002-11-07I autmated the rest of building libfrozen.aKent Mein
I also moved it so that it gets put in: $(OCGDIR)/blender/bpython/$(DEBUG_DIR)libfrozen.a and removed the stuff from the readme on how to do it by hand. (I made one other small change and that was to comment out the ssr target on solaris and freebsd in source/Makefile I forgot to commit it yesterday) Kent -- mein@cs.umn.edu
2002-11-07Updated it so intern/python/freeze is combined into intern's MakefileKent Mein
also updated the readme so its not an extra step anymore. Kent -- mein@cs.umn.edu
2002-10-12Initial revisionv2.25Hans Lambermont