diff options
author | Guido van Rossum <guido@python.org> | 2000-05-03 22:34:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-03 22:34:12 (GMT) |
commit | 2808b744e8d94459f189e1d89c97072d6a1f53b6 (patch) | |
tree | 54359b38ba7742ef7e8ce635dc567f6c4bfbf77d | |
parent | 31c9a27c120cdfe5886bc1c7c8675e9edeb423dd (diff) | |
download | cpython-2808b744e8d94459f189e1d89c97072d6a1f53b6.zip cpython-2808b744e8d94459f189e1d89c97072d6a1f53b6.tar.gz cpython-2808b744e8d94459f189e1d89c97072d6a1f53b6.tar.bz2 |
Remove all references to stdwin.
-rw-r--r-- | Modules/Setup.in | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 0cf8b8f..beb5639 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -79,7 +79,7 @@ TESTPATH= # Path components for machine- or system-dependent modules and shared libraries MACHDEPPATH=:plat-$(MACHDEP) -COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH) +COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(TKPATH) PYTHONPATH=$(COREPYTHONPATH) @@ -184,26 +184,6 @@ socket socketmodule.c # socket(2); not on ancient System V #rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably) -# The stdwin module provides a simple, portable (between X11 and Mac) -# windowing interface. You need to ftp the STDWIN library, e.g. from -# ftp://ftp.cwi.nl/pub/stdwin. (If you get it elsewhere, be sure to -# get version 1.0 or higher!) The STDWIN variable must point to the -# STDWIN toplevel directory. - -# Uncomment and edit as needed: -#STDWIN=/ufs/guido/src/stdwin - -# Uncomment these lines: -#STDWINPATH=:lib-stdwin -#LIBTEXTEDIT=$(STDWIN)/$(MACHDEP)/Packs/textedit/libtextedit.a -#LIBX11STDWIN=$(STDWIN)/$(MACHDEP)/Ports/x11/libstdwin.a -#stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBX11STDWIN) -lX11 - -# Use this instead of the last two lines above for alphanumeric stdwin: -#LIBALFASTDWIN=$(STDWIN)/$(MACHDEP)/Ports/alfa/libstdwin.a -#stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBALFASTDWIN) -ltermcap - - # The md5 module implements the RSA Data Security, Inc. MD5 # Message-Digest Algorithm, described in RFC 1321. The necessary files # md5c.c and md5.h are included here. |