summaryrefslogtreecommitdiffstats
path: root/Python/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 22:58:07 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-14 22:58:07 (GMT)
commit0ae748d3c409fc4b870baadd601a53c6a43ddf11 (patch)
treef2f51f02dae2969fdf958a28e9412da3092eddd3 /Python/Makefile.in
parent09e6ad0c1e1c7b3c6132ab2d5dd85c5cc376721d (diff)
downloadcpython-0ae748d3c409fc4b870baadd601a53c6a43ddf11.zip
cpython-0ae748d3c409fc4b870baadd601a53c6a43ddf11.tar.gz
cpython-0ae748d3c409fc4b870baadd601a53c6a43ddf11.tar.bz2
Changes for Lee Busby's SIGFPE patch set.
New file pyfpe.c and exception FloatingPointError. Surround some f.p. operations with PyFPE macro brackets.
Diffstat (limited to 'Python/Makefile.in')
-rw-r--r--Python/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in
index 5be2532..e8cc39f 100644
--- a/Python/Makefile.in
+++ b/Python/Makefile.in
@@ -41,7 +41,7 @@ OBJS= \
getplatform.o getversion.o graminit.o \
import.o importdl.o \
marshal.o modsupport.o mystrtoul.o \
- pythonrun.o \
+ pyfpe.o pythonrun.o \
sigcheck.o structmember.o sysmodule.o \
traceback.o \
$(LIBOBJS)
@@ -107,6 +107,7 @@ marshal.o: marshal.c
memmove.o: memmove.c
modsupport.o: modsupport.c
mystrtoul.o: mystrtoul.c
+pyfpe.o: pyfpe.c
pythonrun.o: pythonrun.c
sigcheck.o: sigcheck.c
strerror.o: strerror.c