dbertoni    01/04/10 19:39:28

  Modified:    c/src/TestXSLT process.cpp
  Log:
  Changes for OS/390 port.
  
  Revision  Changes    Path
  1.58      +17 -1     xml-xalan/c/src/TestXSLT/process.cpp
  
  Index: process.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- process.cpp       2001/04/03 18:48:54     1.57
  +++ process.cpp       2001/04/11 02:39:27     1.58
  @@ -347,6 +347,22 @@
   
   
   
  +#if defined(OS390)
  +#undef stricmp                                                   
  +#include <strings.h>                                             
  +                                                                 
  +int
  +stricmp(
  +                     const char*             str1,
  +                     const char*             str2)     
  +{
  +     return strcasecmp(str1, str2);
  +}
  +
  +#endif
  +
  +
  +
   bool
   getArgs(
                        int                             argc,
  @@ -733,7 +749,7 @@
        if (params.traceTemplates == true ||
                params.traceTemplateChildren == true ||
                params.traceGenerationEvent == true ||
  -             params.traceSelectionEvent)
  +             params.traceSelectionEvent == true)
        {
                return new TraceListenerDefault(
                                diagnosticsWriter,
  
  
  

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

Reply via email to