[Bf-committers] Trunk compile scons/msvc broken on windows due to changes in blf_glyph.c

2010-11-01 Thread Thomas Dinges
Hey gsrb3d, i get the errors: source\blender\blenfont\intern\blf_glyph.c(39) : error C2006: '#include': Datein amen erwartet, aber 'Bezeichner' gefunden source\blender\blenfont\intern\blf_glyph.c(39) : fatal error C1083: Datei (Inclu de) kann nicht geöffnet werden: : No such file or directory

Re: [Bf-committers] Trunk compile scons/msvc broken on windows due to changes in blf_glyph.c

2010-11-01 Thread GSR
Hi, din...@gmx.de (2010-11-01 at 1100.23 +0100): Hey gsrb3d, i get the errors: source\blender\blenfont\intern\blf_glyph.c(39) : error C2006: '#include': Datein amen erwartet, aber 'Bezeichner' gefunden source\blender\blenfont\intern\blf_glyph.c(39) : fatal error C1083: Datei (Inclu de)

[Bf-committers] Farsthary's branch update help

2010-11-01 Thread raulf
Hi all :) Since my branch has became pretty obsolete and was based on my first unlimited clay draft in order to commit my latest Unlimited Clay patch I need to flush the old code and start from a fresh sync source what steps should I follow to do that? (flush the old branch and start with

Re: [Bf-committers] 2.55 beta AHOY!

2010-11-01 Thread Campbell Barton
This line is failing: char *modpath= BLI_get_folder(BLENDER_SCRIPTS, modules); Can you start blender with strace to see where its looking? strace blender 21 | grep modules On Mon, Nov 1, 2010 at 3:43 PM, Ken Hughes khug...@pacific.edu wrote: Tested my 64-bit build this morning; untarred into

Re: [Bf-committers] [32823] trunk/lib/windows: New Freetype libs for MSVC 2008.

2010-11-01 Thread GSR
Hi, din...@gmx.de (2010-11-02 at 0013.49 +0100): Revision: 32823 http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=revroot=bf-blenderrevision=32823 Author: dingto Date: 2010-11-02 00:13:49 +0100 (Tue, 02 Nov 2010) Log Message: --- New Freetype libs for

Re: [Bf-committers] Auto-registration in Python

2010-11-01 Thread Campbell Barton
On Fri, Oct 29, 2010 at 10:06 PM, Nathan Vegdahl ces...@cessen.com wrote: On the contrary. Having half-defined subclasses of RNATypes breaks the Liskov substitution principle. How?  The RNATypes themselves are not fully defined (e.g. you can't use bpy.types.Panel directly).  Making a derived

Re: [Bf-committers] Farsthary's branch update help

2010-11-01 Thread Luke Frisken
If all else fails I suppose someone could try mailing you a dvd with the latest repository on it :) I would offer to do so now but alas i'm doing exams and don't have much time. On 11/2/10, ra...@info.upr.edu.cu ra...@info.upr.edu.cu wrote: Hi all :) Since my branch has became pretty

Re: [Bf-committers] Blender-2.55 has no menu bar

2010-11-01 Thread Dave Plater
Didn't realize I'd exceeded the size limit, sending without attachment, will upload blenderstrace.txt to bug 3015824. Also having trouble losing the attachment with thunderbird, hope I don't have to resend a copy paste version. On 11/01/2010 01:52 AM, Campbell Barton wrote: You shouldn't need

Re: [Bf-committers] Blender-2.55 has no menu bar

2010-11-01 Thread Campbell Barton
On Tue, Nov 2, 2010 at 12:58 AM, Dave Plater dpla...@webafrica.org.za wrote: Didn't realize I'd exceeded the size limit, sending without attachment, will upload blenderstrace.txt to bug 3015824. Also having trouble losing the attachment with thunderbird, hope I don't have to resend a copy

[Bf-committers] Couple of patches for MinGW compilation

2010-11-01 Thread alex
Hi MinGW compilation broken at the time, firstly by outdated python library files and later by outdated Freetype library. I submitted couple of very simple patches https://projects.blender.org/tracker/index.php?func=detailaid=24461group_id=9atid=127 and

Re: [Bf-committers] Couple of patches for MinGW compilation

2010-11-01 Thread Sergey I. Sharybin
Personally i think it's not good idea to use tdm-gcc to build libraries -- better to use official mingw-gcc with sjlj exceptions model atm. Especially if library contains c++ code, but there could be other problems, maybe with glibc, not sure. Original Message Subject:

Re: [Bf-committers] Couple of patches for MinGW compilation

2010-11-01 Thread alex
On Tue, 02 Nov 2010 04:21:05 +0200, Sergey I. Sharybin g.ula...@gmail.com wrote: Personally i think it's not good idea to use tdm-gcc to build libraries -- better to use official mingw-gcc with sjlj exceptions model atm. Especially if library contains c++ code, but there could be other

Re: [Bf-committers] Couple of patches for MinGW compilation

2010-11-01 Thread Campbell Barton
On Tue, Nov 2, 2010 at 2:35 AM, alex liquidi...@ya.ru wrote: On Tue, 02 Nov 2010 04:21:05 +0200, Sergey I. Sharybin g.ula...@gmail.com wrote:   Personally i think it's not good idea to use tdm-gcc to build libraries -- better to use official mingw-gcc with sjlj exceptions model atm.

Re: [Bf-committers] Auto-registration in Python

2010-11-01 Thread Martin Poirier
Hi, --- On Mon, 11/1/10, Campbell Barton ideasma...@gmail.com wrote: But now its become a problem that we have more complicated situations which I dont think can be handled well automatically... 1) registering classes which have properties which are themselves are rna classes... and so

Re: [Bf-committers] Auto-registration in Python

2010-11-01 Thread Matt Ebb
On Tue, Nov 2, 2010 at 1:44 PM, Martin Poirier the...@yahoo.com wrote: 4) dynamically defined classes/operators are also a case where auto-registration becomes more tricky then its worth. If you're talking about the cases where people were using type() to initialize a class, that's very