]> granicus.if.org Git - python/commitdiff
Fix Makefile so at least it uses Python 2.0, and compiles out of the
authorGuido van Rossum <guido@python.org>
Fri, 3 Nov 2000 12:58:09 +0000 (12:58 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 3 Nov 2000 12:58:09 +0000 (12:58 +0000)
box on Linux.

Demo/pysvr/Makefile

index 073cda5b65ad20063e709b2d06c61558007d0b4d..7e3655354e2d5ff203c0ff0e901a1393bfe610c9 100644 (file)
@@ -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)