[Python-checkins] python/dist/src/Modules Setup.dist,1.29,1.30

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 08 Aug 2002 19:39:15 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv12656/Modules

Modified Files:
	Setup.dist 
Log Message:
Update the text on the Expat module and library.

Index: Setup.dist
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.dist,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** Setup.dist	5 Aug 2002 18:06:17 -0000	1.29
--- Setup.dist	9 Aug 2002 02:39:13 -0000	1.30
***************
*** 451,473 ****
  # Interface to the Expat XML parser
  #
! # Expat is written by James Clark and must be downloaded separately
! # (see below).  The pyexpat module was written by Paul Prescod after a
! # prototype by Jack Jansen.
! #
! # The Expat dist includes Windows .lib and .dll files.  Home page is at
! # http://www.jclark.com/xml/expat.html, the current production release is
! # always ftp://ftp.jclark.com/pub/xml/expat.zip.
! #
! # EXPAT_DIR, below, should point to the expat/ directory created by
! # unpacking the Expat source distribution.
! #
! # Note: the expat build process doesn't yet build a libexpat.a; you can
! # do this manually while we try convince the author to add it.  To do so,
! # cd to EXPAT_DIR, run "make" if you have not done so, then run:
  #
! #    ar cr libexpat.a xmltok/*.o xmlparse/*.o
  #
! #EXPAT_DIR=/usr/local/src/expat
! #pyexpat pyexpat.c -I$(EXPAT_DIR)/xmlparse -L$(EXPAT_DIR) -lexpat
  
  
--- 451,465 ----
  # Interface to the Expat XML parser
  #
! # Expat was written by James Clark and is now maintained by a group of
! # developers on SourceForge; see www.libexpat.org for more
! # information.  The pyexpat module was written by Paul Prescod after a
! # prototype by Jack Jansen.  Source of Expat 1.95.2 is included in
! # Modules/expat/.  Usage of a system shared libexpat.so/expat.dll is
! # not advised.
  #
! # More information on Expat can be found at www.libexpat.org.
  #
! #EXPAT_DIR=/usr/local/src/expat-1.95.2
! #pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat