]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve explanation of how to build the pyexpat module.
authorFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 05:29:08 +0000 (05:29 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 05:29:08 +0000 (05:29 +0000)
Modules/Setup.in

index d59bfcb074f035372ff86019da3f9fa302f1160e..abab8e499920ba93c8b03f7c15763531e09766ad 100644 (file)
@@ -416,10 +416,16 @@ cPickle cPickle.c
 # http://www.jclark.com/xml/expat.html, the current production release is
 # 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, below, should point to the expat/ directory created by
+# unpacking the Expat source distribution.
 #
-#EXPAT_DIR=/usr/local/src/expat/
+# 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