From: Jack Jansen Date: Sun, 2 Mar 2003 21:31:51 +0000 (+0000) Subject: _CG module only needs the ApplicationServices framework, not Carbon. X-Git-Tag: v2.3c1~1618 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d79284843ab9b23b922274f066ea13e88825faad;p=thirdparty%2FPython%2Fcpython.git _CG module only needs the ApplicationServices framework, not Carbon. --- diff --git a/setup.py b/setup.py index f0276c3d6a01..edf085c18818 100644 --- a/setup.py +++ b/setup.py @@ -776,8 +776,7 @@ class PyBuildExt(build_ext): exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'], extra_link_args=['-framework', 'Carbon']) ) exts.append( Extension('_CG', ['cg/_CGmodule.c'], - extra_link_args=['-framework', 'ApplicationServices', - '-framework', 'Carbon']) ) + extra_link_args=['-framework', 'ApplicationServices']) ) exts.append( Extension('_Cm', ['cm/_Cmmodule.c'], extra_link_args=['-framework', 'Carbon']) ) exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'],