python: scipy weave

I am running suse 11.1 and got scipy 0.7.0 installed. I try to write some inline c-code in my python program, but I dont seem to have everything needed.
I run the code


from scipy import weave as sw

def something():
        code = """
                int i;
                        for (i=1;1<100;i++);
                """
        sw.inline(code,],compiler = 'gcc')

something()

but get an error about missing
/usr/lib/python2.6/site-packages/scipy/weave/scxx/weave_imp.cpp

which I can confirm. I have tried to install this, but it leads to a lot of extra problems.
So what do I do?
does anyone else have this problem? (please try it out)
Who might I contact in order to get this fixed?
can I do something myself?