diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/os2emx/Makefile | 8 | ||||
-rw-r--r-- | PC/os2emx/config.c | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 833f3ab..25b88bb 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -268,7 +268,6 @@ DESCRIPTION.zlib$(MODULE.EXT)= Python Extension DLL for accessing the InfoZip c 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.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 DESCRIPTION.pyexpat$(MODULE.EXT)= Python Extension DLL for access to expat library DESCRIPTION.bz2$(MODULE.EXT)= Python Extension DLL for accessing the bz2 compression library @@ -471,9 +470,6 @@ endif ifeq ($(HAVE_GREADLINE),yes) HARDEXTMODULES+= readline endif -ifeq ($(HAVE_BSDDB),yes) - HARDEXTMODULES+= bsddb185 -endif ifeq ($(HAVE_NCURSES),yes) LIBEXTMODULES+= _curses HARDEXTMODULES+= _curses_ @@ -600,10 +596,6 @@ unicodedata$(MODULE.EXT): $(OUT)unicodedata$O $(OUT)unicodedata_m.def $(PYTHON.I unicoded$(MODULE.EXT): unicodedata$(MODULE.EXT) cp $^ $@ -# - optional modules (requiring other software to be installed) -bsddb185$(MODULE.EXT): $(OUT)bsddbmodule$O $(OUT)bsddb185_m.def $(PYTHON.IMPLIB) - $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -ldb $(LIBS) - crypt$(MODULE.EXT): $(OUT)cryptmodule$O $(OUT)crypt_m.def $(PYTHON.IMPLIB) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -lufc $(LIBS) diff --git a/PC/os2emx/config.c b/PC/os2emx/config.c index 07c1783..b6d3fd6 100644 --- a/PC/os2emx/config.c +++ b/PC/os2emx/config.c @@ -81,7 +81,6 @@ extern void init_curses(); extern void init_curses_panel(); extern void init_hotshot(); extern void init_testcapi(); -extern void initbsddb185(); extern void initbz2(); extern void initfpectl(); extern void initfpetest(); @@ -147,7 +146,6 @@ struct _inittab _PyImport_Inittab[] = { {"_curses_panel", init_curses_panel}, {"_hotshot", init_hotshot}, {"_testcapi", init_testcapi}, - {"bsddb185", initbsddb185}, {"bz2", initbz2}, {"fpectl", initfpectl}, {"fpetest", initfpetest}, |