Skip to content

Commit

Permalink
Update numscons build to cope with recent changes in scipy.interpolate.
Browse files Browse the repository at this point in the history
  • Loading branch information
cournape committed Oct 10, 2008
1 parent 9efec24 commit d3fe941
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions scipy/interpolate/SConscript
@@ -1,4 +1,4 @@
# Last Change: Thu Jun 12 07:00 PM 2008 J # Last Change: Fri Oct 10 03:00 PM 2008 J
# vim:syntax=python # vim:syntax=python
from os.path import join as pjoin from os.path import join as pjoin


Expand Down Expand Up @@ -34,7 +34,11 @@ env.PrependUnique(LIBS = ['fitpack'])
env.PrependUnique(LIBPATH = ['.']) env.PrependUnique(LIBPATH = ['.'])


# Build _fitpack # Build _fitpack
env.NumpyPythonExtension('_fitpack', source = '_fitpackmodule.c') env.NumpyPythonExtension('_fitpack', source = 'src/_fitpackmodule.c')


# Build dfitpack # Build dfitpack
env.NumpyPythonExtension('dfitpack', source = 'fitpack.pyf') env.NumpyPythonExtension('dfitpack', source = 'src/fitpack.pyf')

# Build _interpolate
env.NumpyPythonExtension('_interpolate', source = 'src/_interpolate.cpp',
CXXFILESUFFIX = ".cpp")

0 comments on commit d3fe941

Please sign in to comment.