summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-04 12:37:17 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-04 12:37:17 (GMT)
commite7a8cad069ec8e5997273d53227a74a40b809611 (patch)
tree09e02cad6135be5adc90c0a397d4b0f799c28d78 /PC
parentc4c127b85052812babdcec22e46d9333f44094cb (diff)
downloadcpython-e7a8cad069ec8e5997273d53227a74a40b809611.zip
cpython-e7a8cad069ec8e5997273d53227a74a40b809611.tar.gz
cpython-e7a8cad069ec8e5997273d53227a74a40b809611.tar.bz2
make BSDDB 1.85 module buildable again after BSDDB3 module import
Diffstat (limited to 'PC')
-rw-r--r--PC/os2emx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile
index 6af4ac9..c0eb412 100644
--- a/PC/os2emx/Makefile
+++ b/PC/os2emx/Makefile
@@ -236,7 +236,7 @@ DESCRIPTION.crypt$(MODULE.EXT)= Python Extension DLL implementing the crypt$(BR
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.bsddb$(MODULE.EXT)= Python Extension DLL for access to BSD DB (v1.85) library
+DESCRIPTION.bsddb185$(MODULE.EXT)= Python Extension DLL for access to BSD DB (v1.85) library
DESCRIPTION._curses$(MODULE.EXT)= Python Extension DLL for access to ncurses library
DESCRIPTION.pyexpat$(MODULE.EXT)= Python Extension DLL for access to expat library
@@ -422,7 +422,7 @@ ifeq ($(GREADLINE),yes)
HARDEXTMODULES+= readline
endif
ifeq ($(BSDDB),yes)
- HARDEXTMODULES+= bsddb
+ HARDEXTMODULES+= bsddb185
endif
ifeq ($(CURSES),yes)
HARDEXTMODULES+= _curses _curses_
@@ -575,7 +575,7 @@ xxsubtyp$(MODULE.EXT): xxsubtype$(MODULE.EXT)
cp $^ $@
# - optional modules (requiring other software to be installed)
-bsddb$(MODULE.EXT): $(OUT)bsddbmodule$O $(OUT)bsddb_m.def $(PYTHON.IMPLIB)
+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)