summaryrefslogtreecommitdiffstats
path: root/Demo/pysvr
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-11-03 12:58:09 (GMT)
committerGuido van Rossum <guido@python.org>2000-11-03 12:58:09 (GMT)
commit063ee7bbe6bc6078addbb9137db8c4ef909f3225 (patch)
tree2a77c6bd670ded66801c78762eee8bc14409560a /Demo/pysvr
parent2cffc7d4202fc1197280a05d998075551b459283 (diff)
downloadcpython-063ee7bbe6bc6078addbb9137db8c4ef909f3225.zip
cpython-063ee7bbe6bc6078addbb9137db8c4ef909f3225.tar.gz
cpython-063ee7bbe6bc6078addbb9137db8c4ef909f3225.tar.bz2
Fix Makefile so at least it uses Python 2.0, and compiles out of the
box on Linux.
Diffstat (limited to 'Demo/pysvr')
-rw-r--r--Demo/pysvr/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/pysvr/Makefile b/Demo/pysvr/Makefile
index 073cda5..7e36553 100644
--- a/Demo/pysvr/Makefile
+++ b/Demo/pysvr/Makefile
@@ -13,7 +13,7 @@ OPT=-g
# Where Python is installed, and which version
INST=/usr/local
-VER=1.5
+VER=2.0
# Expressions using the above definitions -- no need to change
PYVER=python$(VER)
@@ -28,7 +28,7 @@ PYLIBS=$(PYC)/lib$(PYVER).a
# Libraries to link with -- very installation dependent
# (See LIBS= in Modules/Makefile in build tree)
RLLIBS=-lreadline -ltermcap
-OTHERLIBS=-lsocket -lnsl -lpthread -ldl -lm
+OTHERLIBS=-lnsl -lpthread -ldl -lm -ldb -lutil
# Compilation and link flags -- no need to change normally
CFLAGS=$(PYINCL) $(OPT)