ports/53348: MAINTAINER-UPDATE: textproc/xerces-c2

Bjoern A. Zeeb bzeeb+freebsdports at zabbadoz.net
Tue Jun 17 22:41:02 UTC 2003


On Tue, 17 Jun 2003, Adam Weinberger wrote:

> Synopsis: MAINTAINER-UPDATE: textproc/xerces-c2
> Build fails on my 4.8-STABLE machine.

please find attached patch-ab and add to previous update diff. so no
longer any files gets deleted from cvs.

I will upload this diff along with a new complete ports source tarball to
WWW: http://sources.zabbadoz.net/freebsd/ports/
within the next minutes too.

verified to build on i386/4.7-STABLE.

Thanks again for notification.

--- src/xercesc/dom/impl/DOMDeepNodeListPool.c		Tue Jun 17 22:09:06 2003
+++ src.cvs/xercesc/dom/impl/DOMDeepNodeListPool.c	Tue Jun 17 22:09:39 2003
@@ -90,7 +90,11 @@
     initialize(modulus);

     // create default hasher
+#if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
+    fHash = new HashPtr();
+#else
     fHash = new (fMemoryManager) HashPtr();
+#endif

     //
     //  Allocate the initial id pointers array. We don't have to zero them
--- src/xercesc/util/RefHash3KeysIdPool.c	Tue Jun 17 22:12:13 2003
+++ src.cvs/xercesc/util/RefHash3KeysIdPool.c	Sun Jun 15 09:57:39 2003
@@ -56,6 +56,9 @@

 /**
  * $Log: RefHash3KeysIdPool.c,v $
+ * Revision 1.6  2003/06/02 15:18:08  neilg
+ * fix for bug #20092; thanks to Berin Lautenbach
+ *
  * Revision 1.5  2003/05/21 21:08:04  knoaman
  * gcc 2.95.x is generating an internal error for some template definitions, so
  * we use the default memory manger in such cases.
@@ -118,7 +121,11 @@
     initialize(modulus);

     // create default hasher
+#if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
+		 fHash = new HashXMLCh();
+#else
     fHash = new (fMemoryManager) HashXMLCh();
+#endif

     //
     //  Allocate the initial id pointers array. We don't have to zero them

-- 
Greetings

Bjoern A. Zeeb				bzeeb at Zabbadoz dot NeT
56 69 73 69 74				http://www.zabbadoz.net/



More information about the freebsd-ports-bugs mailing list