peiyongz    2002/12/12 08:28:48

  Modified:    c/src/xercesc/util/Platforms/FreeBSD
                        FreeBSDPlatformUtils.cpp
  Log:
  MsgCatalogLoader added.
  
  Revision  Changes    Path
  1.7       +7 -0      
xml-xerces/c/src/xercesc/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp
  
  Index: FreeBSDPlatformUtils.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- FreeBSDPlatformUtils.cpp  2 Dec 2002 19:16:26 -0000       1.6
  +++ FreeBSDPlatformUtils.cpp  12 Dec 2002 16:28:48 -0000      1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2002/12/12 16:28:48  peiyongz
  + * MsgCatalogLoader added.
  + *
    * Revision 1.6  2002/12/02 19:16:26  tng
    * [Bug 14723] Memory leak in atomicOpsMutex.  Patch from Adam Zell.
    *
  @@ -125,6 +128,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>
  @@ -164,6 +169,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