peiyongz    2002/11/07 14:38:13

  Modified:    c/src/xercesc/util/Platforms/Linux LinuxPlatformUtils.cpp
  Log:
  build -miconv on hpux and linux
  
  Revision  Changes    Path
  1.9       +7 -0      
xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp
  
  Index: LinuxPlatformUtils.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- LinuxPlatformUtils.cpp    4 Nov 2002 15:13:00 -0000       1.8
  +++ LinuxPlatformUtils.cpp    7 Nov 2002 22:38:13 -0000       1.9
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.9  2002/11/07 22:38:13  peiyongz
  + * build -miconv on hpux and linux
  + *
    * Revision 1.8  2002/11/04 15:13:00  tng
    * C++ Namespace Support.
    *
  @@ -205,6 +208,8 @@
   
   #if defined(XML_USE_ICU_MESSAGELOADER)
       #include <xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp>
  +#elif defined (XML_USE_ICONV_MESSAGELOADER)
  +    #include <xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp>
   #else
       // Same as -DXML_USE_INMEM_MESSAGELOADER
       #include <xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
  @@ -245,6 +250,8 @@
       {
   #if defined (XML_USE_ICU_MESSAGELOADER)
           retVal = new ICUMsgLoader(msgDomain);
  +#elif defined (XML_USE_ICONV_MESSAGELOADER)
  +        retVal = new MsgCatalogLoader(msgDomain);        
   #else
           // same as -DXML_USE_INMEM_MESSAGELOADER
           retVal = new InMemMsgLoader(msgDomain);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to