[Python-checkins] python/dist/src/Modules Setup.dist,1.24,1.24.10.1

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Wed, 10 Jul 2002 12:01:28 -0700


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

Modified Files:
      Tag: release22-maint
	Setup.dist 
Log Message:
Update the comments on building the pyexpat extension.
Closes SF bug #577774.


Index: Setup.dist
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.dist,v
retrieving revision 1.24
retrieving revision 1.24.10.1
diff -C2 -d -r1.24 -r1.24.10.1
*** Setup.dist	17 Oct 2001 13:46:28 -0000	1.24
--- Setup.dist	10 Jul 2002 19:01:25 -0000	1.24.10.1
***************
*** 440,462 ****
  # 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
  
  
--- 440,457 ----
  # 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.  Expat 1.95.2 is the recommended version
! # of Expat for use with Python.  Usage of a system shared
! # libexpat.so/expat.dll is not advised; a static version of the
! # library is sufficient.
  #
! # The Expat library should be installed so that the linker will find
! # it properly.
  #
! # More information on Expat can be found at www.libexpat.org.
  #
! #pyexpat pyexpat.c -DHAVE_EXPAT_H -lexpat