# HG changeset patch # User ludal@logilab.fr # Date 1265902575 -3600 # Thu Feb 11 16:36:15 2010 +0100 # Node ID b3493ee58f8208e5c740352683d80e5e8698452c # Parent 3c7b00c2f44bf24e7aaf289c92d60c465291a860 remove link with gecodesupport and fix build on ubuntu hardy diff --git a/__pkginfo__.py b/__pkginfo__.py --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -52,16 +52,14 @@ if sys.platform != 'win32': ext_modules = [Extension('rql_solve', ['gecode_solver.cpp'], - libraries=['gecodeint', 'gecodekernel', - 'gecodesearch','gecodesupport'], + libraries=['gecodeint', 'gecodekernel', 'gecodesearch',], extra_compile_args=['-DGE_VERSION=%s' % GECODE_VERSION], ) ] else: ext_modules = [ Extension('rql_solve', ['gecode_solver.cpp'], - libraries=['gecodeint', 'gecodekernel', - 'gecodesearch','gecodesupport'], + libraries=['gecodeint', 'gecodekernel', 'gecodesearch',], extra_compile_args=['-DGE_VERSION=%s' % GECODE_VERSION], extra_link_args=['-static-libgcc'], )