[Spread-users] Announcing a major new version of the Spread Toolkit 3.17.0 - www.spread.org

Guido van Rossum guido at python.org
Mon Sep 30 15:40:15 EDT 2002


Congratulations with the new release, Yair!  (And Jonathan with the
GWU appointment.  We're having a Python conference there in March;
please stop by to visit!)

For users of the Python Spread Module (see
http://www.python.org/other/spread/) there's a small change necessary
to the setup.py file so that the correct library is used for linkage.
I've placed the patch on the website; here it is again:

*** setup.py	25 Apr 2002 19:22:07 -0000	1.9
--- setup.py	30 Sep 2002 19:34:59 -0000
***************
*** 21,27 ****
      ext = Extension('spread', ['spreadmodule.c'],
                  include_dirs = [SPREAD_DIR + "/include"],
                  library_dirs = [SPREAD_DIR + "/lib"],
!                 libraries = ['tsp'],
                  )
  
  setup(name = "Spread API for Python",
--- 21,27 ----
      ext = Extension('spread', ['spreadmodule.c'],
                  include_dirs = [SPREAD_DIR + "/include"],
                  library_dirs = [SPREAD_DIR + "/lib"],
!                 extra_objects = [SPREAD_DIR + '/lib/libtspread.a'],
                  )
  
  setup(name = "Spread API for Python",


--Guido van Rossum (home page: http://www.python.org/~guido/)




More information about the Spread-users mailing list