[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Fwd: [porting-dev] expat patch ?



Seems like this is one patch less. Soneone willing to look what the
other external sources are and if they are modified?

----- Forwarded message from J?rg Budischewski <Joerg.Budischewski@sun.com> -----

From: J?rg Budischewski <Joerg.Budischewski@sun.com>
Reply-To: dev@porting.openoffice.org
Organization: StarOffice / Sun Microsystems, Inc.
Date: Mon, 04 Mar 2002 17:52:39 GMT
To: dev@porting.openoffice.org
Subject: [porting-dev] expat patch ?
Delivered-To: mailing list dev@porting.openoffice.org

Hi,

I am currently adopting the build of the expat-parser, so that the 
tarball is hosted within our cvs-tree.

There is currently a patch applied to the expat sources, which seems to 
be useless to me, as the patch is within an #ifdef clause, see below. As 
the XML_UNICODE_WCHAR_T define is never set somewhere in the makefiles, 
the patch has no effect. So unless someone complains, I will drop this 
patch for simplicity.

My modifications will have effect in the very current build (src651).

Joerg



Original:

  #ifdef XML_UNICODE
  
  #ifdef XML_UNICODE_WCHAR_T
! typedef const wchar_t *KEY;
  #else /* not XML_UNICODE_WCHAR_T */
  typedef const unsigned short *KEY;
  #endif /* not XML_UNICODE_WCHAR_T */



patch:
  #ifdef XML_UNICODE
  
  #ifdef XML_UNICODE_WCHAR_T
! typedef const sal_Unicode *KEY;
  #else /* not XML_UNICODE_WCHAR_T */
  typedef const unsigned short *KEY;
  #endif /* not XML_UNICODE_WCHAR_T */
  
  #else /* not XML_UNICODE */

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@porting.openoffice.org
For additional commands, e-mail: dev-help@porting.openoffice.org


----- End forwarded message -----

Hochachtungsvoll,
	Bernhard R. Link
-- 
The man who trades freedom for security does not deserve 
nor will he ever receive either. (Benjamin Franklin)



Reply to: