Show
Ignore:
Timestamp:
02/06/04 21:28:18 (5 years ago)
Author:
ug
Message:

Copy previously done changes to bugfix branch

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 05/bugfix/setup-ext.py

    r1 r7  
    33from distutils.core import setup, Extension 
    44 
    5 matchCext = Extension('matchC', sources=['matchC.cc']) 
    6 sgfparsCext = Extension('_sgfpars', sources = ['sgfpars.cc', 'sgfpars_wrap.cxx']) 
     5matchCext = Extension('matchC', sources=['matchC.cc'], libraries=['stdc++'], 
     6                        library_dirs=['/usr/lib']) 
     7sgfparsCext = Extension('_sgfpars', sources = ['sgfpars.cc', 'sgfpars_wrap.cxx'], libraries=['stdc++'], 
     8                        library_dirs=['/usr/lib']) 
    79                           
    810setup(name = 'matchC', ext_modules = [ matchCext ])