mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.
This commit is contained in:
parent
2e23c3125a
commit
2a570049ac
4 changed files with 27 additions and 11 deletions
|
@ -34,7 +34,7 @@ SHELL= /bin/sh
|
|||
|
||||
# === Fixed definitions ===
|
||||
|
||||
OBJS= \
|
||||
AROBJS= \
|
||||
bltinmodule.o \
|
||||
ceval.o compile.o \
|
||||
errors.o \
|
||||
|
@ -44,9 +44,10 @@ OBJS= \
|
|||
import.o importdl.o \
|
||||
marshal.o modsupport.o mystrtoul.o \
|
||||
pyfpe.o pystate.o pythonrun.o \
|
||||
sigcheck.o structmember.o sysmodule.o \
|
||||
structmember.o sysmodule.o \
|
||||
traceback.o \
|
||||
$(LIBOBJS)
|
||||
OBJS= $(AROBJS) sigcheck.o
|
||||
|
||||
LIBRARY= ../libpython$(VERSION).a
|
||||
|
||||
|
@ -57,7 +58,10 @@ all: $(OBJS)
|
|||
|
||||
# This target is used by the master Makefile to add the objects to the library
|
||||
add2lib: $(OBJS)
|
||||
$(AR) cr $(LIBRARY) $(OBJS)
|
||||
$(AR) cr $(LIBRARY) $(AROBJS)
|
||||
if test ! -f ../Modules/hassignal; \
|
||||
then echo adding sigcheck.o; $(AR) r $(LIBRARY) sigcheck.o; \
|
||||
else echo leaving sigcheck.o out; fi
|
||||
touch add2lib
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue