OS/2 EMX build updates for recent CVS changes
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile
index 3bf4fc2..10dc9bd 100644
--- a/PC/os2emx/Makefile
+++ b/PC/os2emx/Makefile
@@ -393,6 +393,7 @@
cStringI \
_hotshot \
imageop \
+ itertool \
md5 \
operator \
pcre \
@@ -531,6 +532,13 @@
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)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)