[Python-checkins] python/dist/src setup.py,1.118,1.119

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 22 Nov 2002 07:53:34 -0800


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv10191

Modified Files:
	setup.py 
Log Message:
Added the alias manager too. The interface isn't perfect yet: the alias
manager doesn't always have the alias as the first argument, so things
become functions in stead of methods.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.118
retrieving revision 1.119
diff -C2 -d -r1.118 -r1.119
*** setup.py	22 Nov 2002 14:58:33 -0000	1.118
--- setup.py	22 Nov 2002 15:53:32 -0000	1.119
***************
*** 729,732 ****
--- 729,734 ----
                  exts.append( Extension('_AH', ['ah/_AHmodule.c'],
                          extra_link_args=['-framework', 'Carbon']) )
+                 exts.append( Extension('_Alias', ['alias/_Aliasmodule.c'],
+                         extra_link_args=['-framework', 'Carbon']) )
                  exts.append( Extension('_App', ['app/_Appmodule.c'],
                          extra_link_args=['-framework', 'Carbon']) )