60b7a5f
--- Python-2.5/Modules/Setup.dist.rhconfig	2006-08-06 03:26:21.000000000 -0400
60b7a5f
+++ Python-2.5/Modules/Setup.dist	2006-10-30 16:25:16.000000000 -0500
60b7a5f
@@ -149,7 +149,7 @@
60b7a5f
 # modules are to be built as shared libraries (see above for more
60b7a5f
 # detail; also note that *static* reverses this effect):
60b7a5f
 
60b7a5f
-#*shared*
60b7a5f
+*shared*
60b7a5f
 
60b7a5f
 # GNU readline.  Unlike previous Python incarnations, GNU readline is
60b7a5f
 # now incorporated in an optional module, configured in the Setup file
60b7a5f
@@ -159,69 +159,69 @@
60b7a5f
 # it, depending on your system -- see the GNU readline instructions.
60b7a5f
 # It's okay for this to be a shared library, too.
60b7a5f
 
60b7a5f
-#readline readline.c -lreadline -ltermcap
60b7a5f
+readline readline.c -lreadline -ltermcap
60b7a5f
 
60b7a5f
 
60b7a5f
 # Modules that should always be present (non UNIX dependent):
60b7a5f
 
60b7a5f
-#array arraymodule.c	# array objects
60b7a5f
-#cmath cmathmodule.c # -lm # complex math library functions
60b7a5f
-#math mathmodule.c # -lm # math library functions, e.g. sin()
60b7a5f
-#_struct _struct.c	# binary structure packing/unpacking
60b7a5f
-#time timemodule.c # -lm # time operations and variables
60b7a5f
-#operator operator.c	# operator.add() and similar goodies
60b7a5f
-#_weakref _weakref.c	# basic weak reference support
60b7a5f
-#_testcapi _testcapimodule.c    # Python C API test module
60b7a5f
-#_random _randommodule.c	# Random number generator
60b7a5f
-#collections collectionsmodule.c # Container types
60b7a5f
-#itertools itertoolsmodule.c	# Functions creating iterators for efficient looping 
60b7a5f
-#strop stropmodule.c		# String manipulations
60b7a5f
+array arraymodule.c	# array objects
60b7a5f
+cmath cmathmodule.c # -lm # complex math library functions
60b7a5f
+math mathmodule.c # -lm # math library functions, e.g. sin()
60b7a5f
+_struct _struct.c	# binary structure packing/unpacking
60b7a5f
+time timemodule.c # -lm # time operations and variables
60b7a5f
+operator operator.c	# operator.add() and similar goodies
60b7a5f
+_weakref _weakref.c	# basic weak reference support
60b7a5f
+_testcapi _testcapimodule.c    # Python C API test module
60b7a5f
+_random _randommodule.c	# Random number generator
60b7a5f
+collections collectionsmodule.c # Container types
60b7a5f
+itertools itertoolsmodule.c	# Functions creating iterators for efficient looping 
60b7a5f
+strop stropmodule.c		# String manipulations
60b7a5f
 
60b7a5f
-#unicodedata unicodedata.c    # static Unicode character database
60b7a5f
+unicodedata unicodedata.c    # static Unicode character database
60b7a5f
 
60b7a5f
 # access to ISO C locale support
60b7a5f
-#_locale _localemodule.c  # -lintl
60b7a5f
+_locale _localemodule.c  # -lintl
60b7a5f
 
60b7a5f
 
60b7a5f
 # Modules with some UNIX dependencies -- on by default:
60b7a5f
 # (If you have a really backward UNIX, select and socket may not be
60b7a5f
 # supported...)
60b7a5f
 
60b7a5f
-#fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
60b7a5f
-#spwd spwdmodule.c		# spwd(3) 
60b7a5f
-#grp grpmodule.c		# grp(3)
60b7a5f
-#select selectmodule.c	# select(2); not on ancient System V
60b7a5f
+fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
60b7a5f
+spwd spwdmodule.c		# spwd(3) 
60b7a5f
+grp grpmodule.c		# grp(3)
60b7a5f
+select selectmodule.c	# select(2); not on ancient System V
60b7a5f
 
60b7a5f
 # Memory-mapped files (also works on Win32).
60b7a5f
-#mmap mmapmodule.c
60b7a5f
+mmap mmapmodule.c
60b7a5f
 
60b7a5f
 # CSV file helper
60b7a5f
-#_csv _csv.c
60b7a5f
+_csv _csv.c
60b7a5f
 
60b7a5f
 # Socket module helper for socket(2)
60b7a5f
-#_socket socketmodule.c
60b7a5f
+_socket socketmodule.c
60b7a5f
 
60b7a5f
 # Socket module helper for SSL support; you must comment out the other
60b7a5f
 # socket line above, and possibly edit the SSL variable:
60b7a5f
 #SSL=/usr/local/ssl
60b7a5f
-#_ssl _ssl.c \
60b7a5f
-#	-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
60b7a5f
-#	-L$(SSL)/lib -lssl -lcrypto
60b7a5f
+_ssl _ssl.c \
60b7a5f
+	-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
60b7a5f
+	-L$(SSL)/lib -lssl -lcrypto
60b7a5f
 
60b7a5f
 # The crypt module is now disabled by default because it breaks builds
60b7a5f
 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
60b7a5f
 #
60b7a5f
 # First, look at Setup.config; configure may have set this for you.
60b7a5f
 
60b7a5f
-#crypt cryptmodule.c # -lcrypt	# crypt(3); needs -lcrypt on some systems
60b7a5f
+crypt cryptmodule.c -lcrypt	# crypt(3); needs -lcrypt on some systems
60b7a5f
 
60b7a5f
 
60b7a5f
 # Some more UNIX dependent modules -- off by default, since these
60b7a5f
 # are not supported by all UNIX systems:
60b7a5f
 
60b7a5f
-#nis nismodule.c -lnsl	# Sun yellow pages -- not everywhere
60b7a5f
-#termios termios.c	# Steen Lumholt's termios module
60b7a5f
-#resource resource.c	# Jeremy Hylton's rlimit interface
60b7a5f
+nis nismodule.c -lnsl	# Sun yellow pages -- not everywhere
60b7a5f
+termios termios.c	# Steen Lumholt's termios module
60b7a5f
+resource resource.c	# Jeremy Hylton's rlimit interface
60b7a5f
 
60b7a5f
 
60b7a5f
 # Multimedia modules -- off by default.
60b7a5f
@@ -229,9 +229,9 @@
60b7a5f
 # #993173 says audioop works on 64-bit platforms, though.
60b7a5f
 # These represent audio samples or images as strings:
60b7a5f
 
60b7a5f
-#audioop audioop.c	# Operations on audio samples
60b7a5f
-#imageop imageop.c	# Operations on images
60b7a5f
-#rgbimg rgbimgmodule.c	# Read SGI RGB image files (but coded portably)
60b7a5f
+audioop audioop.c	# Operations on audio samples
60b7a5f
+imageop imageop.c	# Operations on images
60b7a5f
+rgbimg rgbimgmodule.c	# Read SGI RGB image files (but coded portably)
60b7a5f
 
60b7a5f
 
60b7a5f
 # Note that the _md5 and _sha modules are normally only built if the
60b7a5f
@@ -241,12 +241,12 @@
60b7a5f
 # Message-Digest Algorithm, described in RFC 1321.  The necessary files
60b7a5f
 # md5.c and md5.h are included here.
60b7a5f
 
60b7a5f
-#_md5 md5module.c md5.c
60b7a5f
+_md5 md5module.c md5.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # The _sha module implements the SHA checksum algorithm.
60b7a5f
 # (NIST's Secure Hash Algorithm.)
60b7a5f
-#_sha shamodule.c
60b7a5f
+_sha shamodule.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # SGI IRIX specific modules -- off by default.
60b7a5f
@@ -293,12 +293,12 @@
60b7a5f
 # A Linux specific module -- off by default; this may also work on 
60b7a5f
 # some *BSDs.
60b7a5f
 
60b7a5f
-#linuxaudiodev linuxaudiodev.c
60b7a5f
+linuxaudiodev linuxaudiodev.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # George Neville-Neil's timing module:
60b7a5f
 
60b7a5f
-#timing timingmodule.c
60b7a5f
+timing timingmodule.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # The _tkinter module.
60b7a5f
@@ -313,7 +313,7 @@
60b7a5f
 # every system.
60b7a5f
 
60b7a5f
 # *** Always uncomment this (leave the leading underscore in!):
60b7a5f
-# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
60b7a5f
+_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
60b7a5f
 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
60b7a5f
 #	-L/usr/local/lib \
60b7a5f
 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
60b7a5f
@@ -323,7 +323,7 @@
60b7a5f
 # *** Or uncomment this for Solaris:
60b7a5f
 #	-I/usr/openwin/include \
60b7a5f
 # *** Uncomment and edit for Tix extension only:
60b7a5f
-#	-DWITH_TIX -ltix8.1.8.2 \
60b7a5f
+	-DWITH_TIX -ltix \
60b7a5f
 # *** Uncomment and edit for BLT extension only:
60b7a5f
 #	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
60b7a5f
 # *** Uncomment and edit for PIL (TkImaging) extension only:
60b7a5f
@@ -332,7 +332,7 @@
60b7a5f
 # *** Uncomment and edit for TOGL extension only:
60b7a5f
 #	-DWITH_TOGL togl.c \
60b7a5f
 # *** Uncomment and edit to reflect your Tcl/Tk versions:
60b7a5f
-#	-ltk8.2 -ltcl8.2 \
60b7a5f
+	-ltk -ltcl \
60b7a5f
 # *** Uncomment and edit to reflect where your X11 libraries are:
60b7a5f
 #	-L/usr/X11R6/lib \
60b7a5f
 # *** Or uncomment this for Solaris:
60b7a5f
@@ -342,7 +342,7 @@
60b7a5f
 # *** Uncomment for AIX:
60b7a5f
 #	-lld \
60b7a5f
 # *** Always uncomment this; X11 libraries to link with:
60b7a5f
-#	-lX11
60b7a5f
+	-lX11
60b7a5f
 
60b7a5f
 # Lance Ellinghaus's syslog module
60b7a5f
 #syslog syslogmodule.c		# syslog daemon interface
60b7a5f
@@ -354,9 +354,9 @@
60b7a5f
 #
60b7a5f
 # First, look at Setup.config; configure may have set this for you.
60b7a5f
 
60b7a5f
-#_curses _cursesmodule.c -lcurses -ltermcap
60b7a5f
+_curses _cursesmodule.c -lcurses -ltermcap
60b7a5f
 # Wrapper for the panel library that's part of ncurses and SYSV curses.
60b7a5f
-#_curses_panel _curses_panel.c -lpanel -lncurses 
60b7a5f
+_curses_panel _curses_panel.c -lpanel -lncurses 
60b7a5f
 
60b7a5f
 
60b7a5f
 # Generic (SunOS / SVR4) dynamic loading module.
60b7a5f
@@ -364,7 +364,7 @@
60b7a5f
 # it is a highly experimental and dangerous device for calling
60b7a5f
 # *arbitrary* C functions in *arbitrary* shared libraries:
60b7a5f
 
60b7a5f
-#dl dlmodule.c
60b7a5f
+dl dlmodule.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # Modules that provide persistent dictionary-like semantics.  You will
60b7a5f
@@ -387,7 +387,7 @@
60b7a5f
 #
60b7a5f
 # First, look at Setup.config; configure may have set this for you.
60b7a5f
 
60b7a5f
-#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
60b7a5f
+gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
60b7a5f
 
60b7a5f
 
60b7a5f
 # Sleepycat Berkeley DB interface.
60b7a5f
@@ -402,11 +402,10 @@
60b7a5f
 #
60b7a5f
 # Edit the variables DB and DBLIBVERto point to the db top directory
60b7a5f
 # and the subdirectory of PORT where you built it.
60b7a5f
-#DB=/usr/local/BerkeleyDB.4.0
60b7a5f
-#DBLIBVER=4.0
60b7a5f
-#DBINC=$(DB)/include
60b7a5f
-#DBLIB=$(DB)/lib
60b7a5f
-#_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
60b7a5f
+DBLIBVER=4.3
60b7a5f
+DBINC=/usr/include/db4
60b7a5f
+DBLIB=/usr/lib
60b7a5f
+_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
60b7a5f
 
60b7a5f
 # Historical Berkeley DB 1.85
60b7a5f
 #
60b7a5f
@@ -421,14 +420,14 @@
60b7a5f
 
60b7a5f
 
60b7a5f
 # Helper module for various ascii-encoders
60b7a5f
-#binascii binascii.c
60b7a5f
+binascii binascii.c
60b7a5f
 
60b7a5f
 # Fred Drake's interface to the Python parser
60b7a5f
-#parser parsermodule.c
60b7a5f
+parser parsermodule.c
60b7a5f
 
60b7a5f
 # cStringIO and cPickle
60b7a5f
-#cStringIO cStringIO.c
60b7a5f
-#cPickle cPickle.c
60b7a5f
+cStringIO cStringIO.c
60b7a5f
+cPickle cPickle.c
60b7a5f
 
60b7a5f
 
60b7a5f
 # Lee Busby's SIGFPE modules.
60b7a5f
@@ -451,7 +450,7 @@
60b7a5f
 # Andrew Kuchling's zlib module.
60b7a5f
 # This require zlib 1.1.3 (or later).
60b7a5f
 # See http://www.gzip.org/zlib/
60b7a5f
-#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
60b7a5f
+zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
60b7a5f
 
60b7a5f
 # Interface to the Expat XML parser
60b7a5f
 #
60b7a5f
@@ -471,14 +470,14 @@
60b7a5f
 # Hye-Shik Chang's CJKCodecs
60b7a5f
 
60b7a5f
 # multibytecodec is required for all the other CJK codec modules
60b7a5f
-#_multibytecodec cjkcodecs/multibytecodec.c
60b7a5f
+_multibytecodec cjkcodecs/multibytecodec.c
60b7a5f
 
60b7a5f
-#_codecs_cn cjkcodecs/_codecs_cn.c
60b7a5f
-#_codecs_hk cjkcodecs/_codecs_hk.c
60b7a5f
-#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
60b7a5f
-#_codecs_jp cjkcodecs/_codecs_jp.c
60b7a5f
-#_codecs_kr cjkcodecs/_codecs_kr.c
60b7a5f
-#_codecs_tw cjkcodecs/_codecs_tw.c
60b7a5f
+_codecs_cn cjkcodecs/_codecs_cn.c
60b7a5f
+_codecs_hk cjkcodecs/_codecs_hk.c
60b7a5f
+_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
60b7a5f
+_codecs_jp cjkcodecs/_codecs_jp.c
60b7a5f
+_codecs_kr cjkcodecs/_codecs_kr.c
60b7a5f
+_codecs_tw cjkcodecs/_codecs_tw.c
60b7a5f
 
60b7a5f
 # Example -- included for reference only:
60b7a5f
 # xx xxmodule.c