diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-10-03 08:11:30 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-10-03 08:11:30 (GMT) |
commit | 96b3725ca0c0edf65145e929ec0600267368926e (patch) | |
tree | e1bd62ea3082fe763adff73e41c184baf98c485c /PC/os2emx/Makefile | |
parent | 1b643596a88d4169810116bf0f0d28560896c828 (diff) | |
download | cpython-96b3725ca0c0edf65145e929ec0600267368926e.zip cpython-96b3725ca0c0edf65145e929ec0600267368926e.tar.gz cpython-96b3725ca0c0edf65145e929ec0600267368926e.tar.bz2 |
bring modules up to date, correct .DEF file version
Diffstat (limited to 'PC/os2emx/Makefile')
-rw-r--r-- | PC/os2emx/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 4345f6d..8ee6371 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -40,8 +40,6 @@ HAVE_ZLIB= no HAVE_UFC= no # Do you have the Tcl/Tk library installed? HAVE_TCLTK= no -# Do you have the GNU multiprecision library installed? -HAVE_GMPZ= no # Do you have the GNU readline library installed? # NOTE: I'm using a modified version of Kai Uwe Rommel's port that # - is compiled with multithreading enabled @@ -251,7 +249,6 @@ DESCRIPTION.$(PGEN.EXE)= Python object-oriented programming language parser gene DESCRIPTION.zlib$(MODULE.EXT)= Python Extension DLL for accessing the InfoZip compression library DESCRIPTION.crypt$(MODULE.EXT)= Python Extension DLL implementing the crypt$(BRO)$(BRC) function DESCRIPTION._tkinter$(MODULE.EXT)= Python Extension DLL for access to Tcl/Tk Environment -DESCRIPTION.mpz$(MODULE.EXT)= Python Extension DLL for access to GNU multi-precision library DESCRIPTION.readline$(MODULE.EXT)= Python Extension DLL for access to GNU ReadLine library DESCRIPTION.bsddb185$(MODULE.EXT)= Python Extension DLL for access to BSD DB (v1.85) library DESCRIPTION._curses$(MODLIB.EXT)= Python Extension DLL for access to ncurses library @@ -301,7 +298,6 @@ SRC.MODULES= $(addprefix $(TOP), \ Modules/timemodule.c \ Modules/timingmodule.c \ Modules/_weakref.c \ - Modules/xreadlinesmodule.c \ Modules/xxsubtype.c \ Modules/zipimport.c) SRC.PARSE1= $(addprefix $(TOP), \ @@ -422,7 +418,6 @@ EASYEXTMODULES= fpectl \ fpetest \ parser \ pwd \ - rotor \ select # Python modules to be dynamically loaded that need explicit build rules @@ -449,9 +444,6 @@ ifeq ($(HAVE_TCLTK),yes) CFLAGS+= -DHAS_DIRENT -I/TclTk80/include TK_LIBS+= -L/TclTk80/lib -ltcl80 -ltk80 endif -ifeq ($(HAVE_GMPZ),yes) - HARDEXTMODULES+= mpz -endif ifeq ($(HAVE_GREADLINE),yes) HARDEXTMODULES+= readline endif @@ -635,8 +627,6 @@ dbm$(MODULE.EXT): $(OUT)dbmmodule$O $(OUT)dbm_m.def $(PYTHON.IMPLIB) gdbm$(MODULE.EXT): $(OUT)gdbmmodule$O $(OUT)gdbm_m.def $(PYTHON.IMPLIB) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgdbm -mpz$(MODULE.EXT): $(OUT)mpzmodule$O $(OUT)mpz_m.def $(PYTHON.IMPLIB) - $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgmp # Expat is now distributed with Python, so use the included version $(OUT)pyexpat$O: ../../Modules/pyexpat.c |