27b0394
--- Python-2.5.1/Include/pyexpat.h.rhconfig	2006-06-19 19:21:25.000000000 -0400
27b0394
+++ Python-2.5.1/Include/pyexpat.h	2007-06-27 10:12:45.000000000 -0400
787d525
@@ -5,6 +5,19 @@
787d525
 
787d525
 #define PyExpat_CAPI_MAGIC  "pyexpat.expat_CAPI 1.0"
787d525
 
787d525
+#ifdef XML_LARGE_SIZE  /* Use large integers for file/stream positions. */
787d525
+#if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
787d525
+typedef __int64 XML_Index; 
787d525
+typedef unsigned __int64 XML_Size;
787d525
+#else
787d525
+typedef long long XML_Index;
787d525
+typedef unsigned long long XML_Size;
787d525
+#endif
787d525
+#else
787d525
+typedef long XML_Index;
787d525
+typedef unsigned long XML_Size;
787d525
+#endif /* XML_LARGE_SIZE */
787d525
+
787d525
 struct PyExpat_CAPI 
787d525
 {
787d525
     char* magic; /* set to PyExpat_CAPI_MAGIC */
787d525
--- Python-2.5.1/Modules/Setup.dist.rhconfig	2006-08-06 03:26:21.000000000 -0400
27b0394
+++ Python-2.5.1/Modules/Setup.dist	2007-06-27 10:12:45.000000000 -0400
787d525
@@ -149,7 +149,7 @@ GLHACK=-Dclear=__GLclear
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
787d525
@@ -159,69 +159,69 @@ GLHACK=-Dclear=__GLclear
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
7c4cd75
+readline readline.c -lreadline -lncursesw
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.
787d525
@@ -229,9 +229,9 @@ GLHACK=-Dclear=__GLclear
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
787d525
@@ -241,12 +241,12 @@ GLHACK=-Dclear=__GLclear
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.
787d525
@@ -293,12 +293,12 @@ GLHACK=-Dclear=__GLclear
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.
787d525
@@ -313,7 +313,7 @@ GLHACK=-Dclear=__GLclear
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:
787d525
@@ -323,7 +323,7 @@ GLHACK=-Dclear=__GLclear
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:
787d525
@@ -332,7 +332,7 @@ GLHACK=-Dclear=__GLclear
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:
787d525
@@ -342,7 +342,7 @@ GLHACK=-Dclear=__GLclear
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
787d525
@@ -354,9 +354,9 @@ GLHACK=-Dclear=__GLclear
60b7a5f
 #
60b7a5f
 # First, look at Setup.config; configure may have set this for you.
60b7a5f
 
60b7a5f
-#_curses _cursesmodule.c -lcurses -ltermcap
7c4cd75
+_curses _cursesmodule.c -lncursesw
60b7a5f
 # Wrapper for the panel library that's part of ncurses and SYSV curses.
60b7a5f
-#_curses_panel _curses_panel.c -lpanel -lncurses 
7c4cd75
+_curses_panel _curses_panel.c -lpanel -lncursesw 
60b7a5f
 
60b7a5f
 
60b7a5f
 # Generic (SunOS / SVR4) dynamic loading module.
787d525
@@ -364,7 +364,7 @@ GLHACK=-Dclear=__GLclear
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
787d525
@@ -387,7 +387,7 @@ GLHACK=-Dclear=__GLclear
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.
787d525
@@ -402,11 +402,10 @@ GLHACK=-Dclear=__GLclear
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)
0495deb
+DBLIBVER=4.7
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
 #
787d525
@@ -421,14 +420,14 @@ GLHACK=-Dclear=__GLclear
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.
787d525
@@ -451,7 +450,7 @@ GLHACK=-Dclear=__GLclear
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
 #
787d525
@@ -465,20 +464,20 @@ GLHACK=-Dclear=__GLclear
787d525
 # More information on Expat can be found at www.libexpat.org.
787d525
 #
787d525
 #EXPAT_DIR=/usr/local/src/expat-1.95.2
787d525
-#pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat
787d525
+pyexpat pyexpat.c -DHAVE_EXPAT_H -lexpat
787d525
 
787d525
 
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
27b0394
--- Python-2.5.1/setup.py.rhconfig	2007-06-27 10:26:41.000000000 -0400
27b0394
+++ Python-2.5.1/setup.py	2007-06-27 10:26:51.000000000 -0400
27b0394
@@ -998,7 +998,6 @@ class PyBuildExt(build_ext):
27b0394
 
27b0394
         exts.append(Extension('pyexpat',
27b0394
                               define_macros = define_macros,
27b0394
-                              include_dirs = [expatinc],
27b0394
                               sources = ['pyexpat.c',
27b0394
                                          'expat/xmlparse.c',
27b0394
                                          'expat/xmlrole.c',
27b0394
@@ -1013,7 +1012,6 @@ class PyBuildExt(build_ext):
27b0394
             define_macros.append(('USE_PYEXPAT_CAPI', None))
27b0394
             exts.append(Extension('_elementtree',
27b0394
                                   define_macros = define_macros,
27b0394
-                                  include_dirs = [expatinc],
27b0394
                                   sources = ['_elementtree.c'],
27b0394
                                   ))
27b0394