OS/2 EMX build updates for recent CVS changes

This commit is contained in:
Andrew MacIntyre 2003-02-19 12:42:36 +00:00
parent cef2f7cd18
commit 4f28c4da36
2 changed files with 15 additions and 2 deletions

View File

@ -393,6 +393,7 @@ HARDEXTMODULES= binascii \
cStringI \ cStringI \
_hotshot \ _hotshot \
imageop \ imageop \
itertool \
md5 \ md5 \
operator \ operator \
pcre \ pcre \
@ -531,6 +532,13 @@ _hotshot$(MODULE.EXT): $(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB)
imageop$(MODULE.EXT): $(OUT)imageop$O $(OUT)imageop_m.def $(PYTHON.IMPLIB) imageop$(MODULE.EXT): $(OUT)imageop$O $(OUT)imageop_m.def $(PYTHON.IMPLIB)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(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) md5$(MODULE.EXT): $(OUT)md5module$O $(OUT)md5c$O $(OUT)md5_m.def $(PYTHON.IMPLIB)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)

View File

@ -298,6 +298,7 @@ EXPORTS
"PyFunction_New" "PyFunction_New"
"PyFunction_GetCode" "PyFunction_GetCode"
"PyFunction_GetGlobals" "PyFunction_GetGlobals"
"PyFunction_GetModule"
"PyFunction_GetDefaults" "PyFunction_GetDefaults"
"PyFunction_SetDefaults" "PyFunction_SetDefaults"
"PyFunction_GetClosure" "PyFunction_GetClosure"
@ -347,6 +348,8 @@ EXPORTS
"PyLong_FromDouble" "PyLong_FromDouble"
"PyLong_AsLong" "PyLong_AsLong"
"PyLong_AsUnsignedLong" "PyLong_AsUnsignedLong"
"_PyLong_Sign"
"_PyLong_NumBits"
"_PyLong_FromByteArray" "_PyLong_FromByteArray"
"_PyLong_AsByteArray" "_PyLong_AsByteArray"
"_PyLong_AsScaledDouble" "_PyLong_AsScaledDouble"
@ -362,7 +365,7 @@ EXPORTS
"PyLong_Type" "PyLong_Type"
; From python23_s.lib(methodobject) ; From python23_s.lib(methodobject)
"PyCFunction_New" "PyCFunction_NewEx"
"PyCFunction_GetFunction" "PyCFunction_GetFunction"
"PyCFunction_GetSelf" "PyCFunction_GetSelf"
"PyCFunction_GetFlags" "PyCFunction_GetFlags"
@ -370,6 +373,7 @@ EXPORTS
"Py_FindMethodInChain" "Py_FindMethodInChain"
"Py_FindMethod" "Py_FindMethod"
"PyCFunction_Fini" "PyCFunction_Fini"
"PyCFunction_New"
"PyCFunction_Type" "PyCFunction_Type"
; From python23_s.lib(moduleobject) ; From python23_s.lib(moduleobject)
@ -387,9 +391,9 @@ EXPORTS
"_PyObject_New" "_PyObject_New"
"_PyObject_NewVar" "_PyObject_NewVar"
"_PyObject_Del" "_PyObject_Del"
"PyObject_Print"
"PyObject_Str" "PyObject_Str"
"PyObject_Repr" "PyObject_Repr"
"PyObject_Print"
"_PyObject_Dump" "_PyObject_Dump"
"PyObject_Unicode" "PyObject_Unicode"
"PyObject_GetAttr" "PyObject_GetAttr"
@ -666,6 +670,7 @@ EXPORTS
"_PyExc_Fini" "_PyExc_Fini"
; From python23_s.lib(ceval) ; From python23_s.lib(ceval)
"PyEval_GetCallStats"
"PyEval_InitThreads" "PyEval_InitThreads"
"PyEval_AcquireLock" "PyEval_AcquireLock"
"PyEval_ReleaseLock" "PyEval_ReleaseLock"