[Python-checkins] python/dist/src/PC/os2emx Makefile,1.8,1.9 python23.def,1.5,1.6

aimacintyre@users.sourceforge.net aimacintyre@users.sourceforge.net
Wed, 19 Feb 2003 04:42:38 -0800


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

Modified Files:
	Makefile python23.def 
Log Message:
OS/2 EMX build updates for recent CVS changes

Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/os2emx/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile	2 Jan 2003 12:38:39 -0000	1.8
--- Makefile	19 Feb 2003 12:42:35 -0000	1.9
***************
*** 394,397 ****
--- 394,398 ----
  		_hotshot \
  		imageop \
+ 		itertool \
  		md5 \
  		operator \
***************
*** 531,534 ****
--- 532,542 ----
  imageop$(MODULE.EXT): $(OUT)imageop$O $(OUT)imageop_m.def $(PYTHON.IMPLIB)
  	$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
+ 
+ # itertools needs to be renamed to be useful
+ itertools$(MODULE.EXT): $(OUT)itertoolsmodule$O $(OUT)itertools_m.def $(PYTHON.IMPLIB)
+ 	$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
+ 
+ itertool$(MODULE.EXT): itertools$(MODULE.EXT)
+ 	cp $^ $@
  
  md5$(MODULE.EXT): $(OUT)md5module$O $(OUT)md5c$O $(OUT)md5_m.def $(PYTHON.IMPLIB)

Index: python23.def
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/os2emx/python23.def,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** python23.def	31 Dec 2002 11:25:42 -0000	1.5
--- python23.def	19 Feb 2003 12:42:36 -0000	1.6
***************
*** 299,302 ****
--- 299,303 ----
    "PyFunction_GetCode"
    "PyFunction_GetGlobals"
+   "PyFunction_GetModule"
    "PyFunction_GetDefaults"
    "PyFunction_SetDefaults"
***************
*** 348,351 ****
--- 349,354 ----
    "PyLong_AsLong"
    "PyLong_AsUnsignedLong"
+   "_PyLong_Sign"
+   "_PyLong_NumBits"
    "_PyLong_FromByteArray"
    "_PyLong_AsByteArray"
***************
*** 363,367 ****
  
  ; From python23_s.lib(methodobject)
!   "PyCFunction_New"
    "PyCFunction_GetFunction"
    "PyCFunction_GetSelf"
--- 366,370 ----
  
  ; From python23_s.lib(methodobject)
!   "PyCFunction_NewEx"
    "PyCFunction_GetFunction"
    "PyCFunction_GetSelf"
***************
*** 371,374 ****
--- 374,378 ----
    "Py_FindMethod"
    "PyCFunction_Fini"
+   "PyCFunction_New"
    "PyCFunction_Type"
  
***************
*** 388,394 ****
    "_PyObject_NewVar"
    "_PyObject_Del"
-   "PyObject_Print"
    "PyObject_Str"
    "PyObject_Repr"
    "_PyObject_Dump"
    "PyObject_Unicode"
--- 392,398 ----
    "_PyObject_NewVar"
    "_PyObject_Del"
    "PyObject_Str"
    "PyObject_Repr"
+   "PyObject_Print"
    "_PyObject_Dump"
    "PyObject_Unicode"
***************
*** 667,670 ****
--- 671,675 ----
  
  ; From python23_s.lib(ceval)
+   "PyEval_GetCallStats"
    "PyEval_InitThreads"
    "PyEval_AcquireLock"