[XML-SIG] broken install of PyXML-0.8.2 on darwin

Martina Oefelein Martina@Oefelein.de
Thu, 6 Mar 2003 22:29:13 +0100


Hi Martin,

> After this patch it builds, albeit with a bunch of warnings

For the warnings see the build log below, essentially there are only 2 
issues:

1. From expat: `regparm' attribute directive ignored
2. Warnings about not matching architecture i386. This is not 
pyxml-specific, it happens with many other projects, too. It's due to 
the "-arch i386 -arch ppc" on the ggc command line. The pyobjc people 
have a hack to remove this:

if sys.platform == 'darwin':
     # Apple has used build options that don't work with a 'normal' 
system.
     # Remove '-arch i386' from the LDFLAGS.
     import distutils.sysconfig
     distutils.sysconfig.get_config_vars()
     x = distutils.sysconfig._config_vars['LDSHARED']
     y = x.replace('-arch i386', '')
     if y != x:
         print "Fixing Apple strangeness in Python configuration"
         distutils.sysconfig._config_vars['LDSHARED'] = y

However, the i386 specification is of course needed for Darwin on 
Intel. Therefore I don't recommend that you apply this patch "as is".

ciao
Martina

----
[iBook:~/Desktop/PyXML-0.8.2] martina% python setup.py build
running build
running build_py
creating build
creating build/lib.darwin-6.4-Power Macintosh-2.2
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus
copying xml/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus
copying xml/FtCore.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus
copying xml/ns.py -> build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom
copying xml/dom/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Attr.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/CDATASection.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/CharacterData.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Comment.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Document.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/DocumentFragment.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/DocumentType.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/DOMImplementation.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/domreg.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Element.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Entity.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/EntityReference.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Event.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/expatbuilder.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/FtNode.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/javadom.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/MessageSource.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/minicompat.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/minidom.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/minitraversal.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/NamedNodeMap.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/NodeFilter.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/NodeIterator.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/NodeList.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Notation.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/ProcessingInstruction.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/pulldom.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Range.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/Text.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/TreeWalker.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
copying xml/dom/xmlbuilder.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/GenerateHtml.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLAnchorElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLAppletElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLAreaElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLBaseElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLBaseFontElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLBodyElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLBRElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLButtonElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLCollection.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLDirectoryElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLDivElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLDListElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLDocument.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLDOMImplementation.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLFieldSetElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLFontElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLFormElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLFrameElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLFrameSetElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLHeadElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLHeadingElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLHRElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLHtmlElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLIFrameElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLImageElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLInputElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLIsIndexElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLLabelElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLLegendElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLLIElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLLinkElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLMapElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLMenuElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLMetaElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLModElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLObjectElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLOListElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLOptGroupElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLOptionElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLParagraphElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLParamElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLPreElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLQuoteElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLScriptElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLSelectElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLStyleElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableCaptionElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableCellElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableColElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableRowElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTableSectionElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTextAreaElement.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLTitleElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
copying xml/dom/html/HTMLUListElement.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/html
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/c14n.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/Dom2Sax.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/Printer.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/Visitor.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/XHtml2HtmlPrinter.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
copying xml/dom/ext/XHtmlPrinter.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext
creating build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/HtmlLib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/HtmlSax.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/PyExpat.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/Sax.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/Sax2.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/Sax2Lib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
copying xml/dom/ext/reader/Sgmlop.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/dom/ext/reader
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/marshal
copying xml/marshal/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/marshal
copying xml/marshal/generic.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/marshal
copying xml/marshal/wddx.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/marshal
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/unicode
copying xml/unicode/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/unicode
copying xml/unicode/iso8859.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/unicode
copying xml/unicode/utf8_iso.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/unicode
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/parsers
copying xml/parsers/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers
copying xml/parsers/expat.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers
copying xml/parsers/sgmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers
creating build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/_outputters.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/catalog.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/charconv.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/dtdparser.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/errors.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/namespace.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/utils.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xcatalog.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xmlapp.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xmldtd.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xmlproc.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xmlutils.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
copying xml/parsers/xmlproc/xmlval.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/parsers/xmlproc
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax
copying xml/sax/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/_exceptions.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/expatreader.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/handler.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/sax2exts.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/saxexts.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/saxlib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/saxutils.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/writer.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
copying xml/sax/xmlreader.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_htmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_ltdriver.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_ltdriver_val.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_pyexpat.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_sgmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_sgmlop.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_xmldc.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_xmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_xmlproc.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_xmlproc_val.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/drv_xmltoolkit.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
copying xml/sax/drivers/pylibs.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_htmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_javasax.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_pyexpat.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_sgmllib.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_sgmlop.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_sgmlop_html.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/sax/drivers2
copying xml/sax/drivers2/drv_xmlproc.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/sax/drivers2
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/utils
copying xml/utils/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/utils
copying xml/utils/characters.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/utils
copying xml/utils/iso8601.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/utils
copying xml/utils/qp_xml.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/utils
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/schema
copying xml/schema/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/schema
copying xml/schema/trex.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/schema
creating build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/__init__.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/BuiltInExtFunctions.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/Context.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/Conversions.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/CoreFunctions.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ExpandedNameWrapper.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/MessageSource.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/NamespaceNode.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedAbbreviatedRelativeLocationPath.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedAbsoluteLocationPath.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedAxisSpecifier.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedExpr.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedNodeTest.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedPredicateList.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedRelativeLocationPath.py -> 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/ParsedStep.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/pyxpath.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/Set.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/Util.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/XPathGrammar.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/XPathParser.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/XPathParserBase.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
copying xml/xpath/yappsrt.py -> build/lib.darwin-6.4-Power 
Macintosh-2.2/_xmlplus/xpath
running build_ext
building '_xmlplus.parsers.pyexpat' extension
creating build/temp.darwin-6.4-Power Macintosh-2.2
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-DXML_NS=1 -DXML_DTD=1 -DBYTEORDER=4321 -DXML_CONTEXT_BYTES=1024 
-Iextensions/expat/lib -I/usr/include/python2.2 -c extensions/pyexpat.c 
-o build/temp.darwin-6.4-Power Macintosh-2.2/pyexpat.o
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-DXML_NS=1 -DXML_DTD=1 -DBYTEORDER=4321 -DXML_CONTEXT_BYTES=1024 
-Iextensions/expat/lib -I/usr/include/python2.2 -c 
extensions/expat/lib/xmlparse.c -o build/temp.darwin-6.4-Power 
Macintosh-2.2/xmlparse.o
In file included from extensions/expat/lib/xmlparse.c:83:
extensions/expat/lib/xmltok.h:143: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:144: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:149: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:280: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:281: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:345: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:360: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:361: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:362: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:364: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:365: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:368: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:369: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:370: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:377: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:379: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:383: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:385: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:825: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:1013: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:4558: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:4925: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5261: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5270: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5343: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5358: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5371: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5381: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5388: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5399: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5410: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5430: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5463: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5489: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5512: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlparse.c:5575: warning: `regparm' attribute 
directive ignored
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-DXML_NS=1 -DXML_DTD=1 -DBYTEORDER=4321 -DXML_CONTEXT_BYTES=1024 
-Iextensions/expat/lib -I/usr/include/python2.2 -c 
extensions/expat/lib/xmlrole.c -o build/temp.darwin-6.4-Power 
Macintosh-2.2/xmlrole.o
In file included from extensions/expat/lib/xmlrole.h:14,
                  from extensions/expat/lib/xmlrole.c:13:
extensions/expat/lib/xmltok.h:143: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:144: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:149: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:280: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:281: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlrole.c:111: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmlrole.c:1290: warning: `regparm' attribute 
directive ignored
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-DXML_NS=1 -DXML_DTD=1 -DBYTEORDER=4321 -DXML_CONTEXT_BYTES=1024 
-Iextensions/expat/lib -I/usr/include/python2.2 -c 
extensions/expat/lib/xmltok.c -o build/temp.darwin-6.4-Power 
Macintosh-2.2/xmltok.o
In file included from extensions/expat/lib/xmltok.c:13:
extensions/expat/lib/xmltok.h:143: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:144: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:149: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:280: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.h:281: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:116: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:122: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:128: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:136: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:142: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:150: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:156: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:162: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:176: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:177: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:178: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:179: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:180: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:181: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:182: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:183: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:184: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:215: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:290:
extensions/expat/lib/xmltok_impl.c:1522: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok_impl.c:1697: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok_impl.c:1724: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:509: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:687:
extensions/expat/lib/xmltok_impl.c:1522: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:687:
extensions/expat/lib/xmltok_impl.c:1697: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:687:
extensions/expat/lib/xmltok_impl.c:1724: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:826:
extensions/expat/lib/xmltok_impl.c:1522: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:826:
extensions/expat/lib/xmltok_impl.c:1697: warning: `regparm' attribute 
directive ignored
In file included from extensions/expat/lib/xmltok.c:826:
extensions/expat/lib/xmltok_impl.c:1724: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:908: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:945: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1159: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1178: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1215: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1249: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1259: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1269: warning: `regparm' attribute 
directive ignored
extensions/expat/lib/xmltok.c:1447: warning: `regparm' attribute 
directive ignored
gcc -arch i386 -arch ppc -bundle -flat_namespace -undefined suppress 
build/temp.darwin-6.4-Power Macintosh-2.2/pyexpat.o 
build/temp.darwin-6.4-Power Macintosh-2.2/xmlparse.o 
build/temp.darwin-6.4-Power Macintosh-2.2/xmlrole.o 
build/temp.darwin-6.4-Power Macintosh-2.2/xmltok.o -o 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/parsers/pyexpat.so
ld: for architecture i386
ld: warning /usr/lib/bundle1.o cputype (18, architecture ppc) does not 
match cputype (7) for specified -arch flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/pyexpat.o cputype 
(18, architecture ppc) does not match cputype (7) for specified -arch 
flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/xmlparse.o 
cputype (18, architecture ppc) does not match cputype (7) for specified 
-arch flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/xmlrole.o cputype 
(18, architecture ppc) does not match cputype (7) for specified -arch 
flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/xmltok.o cputype 
(18, architecture ppc) does not match cputype (7) for specified -arch 
flag: i386 (file not loaded)
ld: warning /usr/lib/gcc/darwin/3.1/libgcc.a archive's cputype (18, 
architecture ppc) does not match cputype (7) for specified -arch flag: 
i386 (can't load from it)
ld: warning /usr/lib/libSystem.dylib cputype (18, architecture ppc) 
does not match cputype (7) for specified -arch flag: i386 (file not 
loaded)
building '_xmlplus.parsers.sgmlop' extension
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-I/usr/include/python2.2 -c extensions/sgmlop.c -o 
build/temp.darwin-6.4-Power Macintosh-2.2/sgmlop.o
gcc -arch i386 -arch ppc -bundle -flat_namespace -undefined suppress 
build/temp.darwin-6.4-Power Macintosh-2.2/sgmlop.o -o 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/parsers/sgmlop.so
ld: for architecture i386
ld: warning /usr/lib/bundle1.o cputype (18, architecture ppc) does not 
match cputype (7) for specified -arch flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/sgmlop.o cputype 
(18, architecture ppc) does not match cputype (7) for specified -arch 
flag: i386 (file not loaded)
ld: warning /usr/lib/gcc/darwin/3.1/libgcc.a archive's cputype (18, 
architecture ppc) does not match cputype (7) for specified -arch flag: 
i386 (can't load from it)
ld: warning /usr/lib/libSystem.dylib cputype (18, architecture ppc) 
does not match cputype (7) for specified -arch flag: i386 (file not 
loaded)
building '_xmlplus.utils.boolean' extension
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -no-cpp-precomp 
-I/usr/include/python2.2 -c extensions/boolean.c -o 
build/temp.darwin-6.4-Power Macintosh-2.2/boolean.o
gcc -arch i386 -arch ppc -bundle -flat_namespace -undefined suppress 
build/temp.darwin-6.4-Power Macintosh-2.2/boolean.o -o 
build/lib.darwin-6.4-Power Macintosh-2.2/_xmlplus/utils/boolean.so
ld: for architecture i386
ld: warning /usr/lib/bundle1.o cputype (18, architecture ppc) does not 
match cputype (7) for specified -arch flag: i386 (file not loaded)
ld: warning build/temp.darwin-6.4-Power Macintosh-2.2/boolean.o cputype 
(18, architecture ppc) does not match cputype (7) for specified -arch 
flag: i386 (file not loaded)
ld: warning /usr/lib/gcc/darwin/3.1/libgcc.a archive's cputype (18, 
architecture ppc) does not match cputype (7) for specified -arch flag: 
i386 (can't load from it)
ld: warning /usr/lib/libSystem.dylib cputype (18, architecture ppc) 
does not match cputype (7) for specified -arch flag: i386 (file not 
loaded)
running build_scripts
creating build/scripts-2.2
copying and adjusting scripts/xmlproc_parse -> build/scripts-2.2
copying and adjusting scripts/xmlproc_val -> build/scripts-2.2