March 5, 2006
8:24 a.m.
one for the archives ... Paul Everitt wrote:
Stefan Behnel wrote:
Paul Everitt wrote:
I'm stuck on compiling the trunk (the swig_sources error) for OS X.
Check if you have this line in Pyrex/Distutils/build_ext.py (line ~35)
def swig_sources (self, sources, extension=None):
I have:
def swig_sources (self, sources): if not self.extensions: return
Then change it. You may just as well use def swig_sources(self, sources, *otherargs): It doesn't matter. It's just there to allow either two or three arguments. Stefan