Skip to content

Commit 1ae940a

Browse files
committed
Lots of changes, most minor (fatal() instead of abort(), use of
err_fetch/err_restore and so on). But... NOTE: import.c has been rewritten and all the DL stuff is now in the new file importdl.c.
1 parent 824de25 commit 1ae940a

File tree

15 files changed

+1777
-995
lines changed

15 files changed

+1777
-995
lines changed

Python/Makefile.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ OBJS= \
3535
errors.o \
3636
frozenmain.o \
3737
getargs.o getmtime.o graminit.o \
38-
import.o \
38+
import.o importdl.o \
3939
marshal.o modsupport.o mystrtoul.o \
4040
pythonmain.o pythonrun.o \
4141
sigcheck.o structmember.o sysmodule.o \
@@ -66,8 +66,8 @@ Makefile: $(srcdir)/Makefile.in ../config.status
6666
(cd ..; CONFIG_FILES=Python/Makefile CONFIG_HEADERS= \
6767
$(SHELL) config.status)
6868

69-
import.o: import.c
70-
$(CC) $(CFLAGS) -I$(DLINCLDIR) -c $(srcdir)/import.c
69+
importdl.o: importdl.c
70+
$(CC) $(CFLAGS) -I$(DLINCLDIR) -c $(srcdir)/importdl.c
7171

7272
depend:
7373
$(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \
@@ -88,6 +88,7 @@ getcwd.o: getcwd.c
8888
getmtime.o: getmtime.c
8989
graminit.o: graminit.c
9090
import.o: import.c
91+
importdl.o: importdl.c
9192
marshal.o: marshal.c
9293
memmove.o: memmove.c
9394
modsupport.o: modsupport.c

0 commit comments

Comments
 (0)