[Python-checkins] CVS: python/dist/src/Modules Setup.in,1.103,1.104

Fred L. Drake python-dev@python.org
Wed, 28 Jun 2000 22:29:11 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv13996

Modified Files:
	Setup.in 
Log Message:

Improve explanation of how to build the pyexpat module.


Index: Setup.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.in,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -r1.103 -r1.104
*** Setup.in	2000/06/28 16:42:39	1.103
--- Setup.in	2000/06/29 05:29:08	1.104
***************
*** 417,424 ****
  # always ftp://ftp.jclark.com/pub/xml/expat.zip.
  #
! # (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.)
  #
! #EXPAT_DIR=/usr/local/src/expat/
  #pyexpat pyexpat.c -I$(EXPAT_DIR)/xmlparse -L$(EXPAT_DIR) -lexpat
  
--- 417,430 ----
  # 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 xmltok/*.o xmlparse/*.o
! #
! #EXPAT_DIR=/usr/local/src/expat
  #pyexpat pyexpat.c -I$(EXPAT_DIR)/xmlparse -L$(EXPAT_DIR) -lexpat