You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ra...@locus.apache.org on 2000/06/16 23:13:24 UTC

cvs commit: xml-xerces/c/src/util/Compilers VCPPDefs.hpp

rahulj      00/06/16 14:13:24

  Modified:    c/src/util/Compilers VCPPDefs.hpp
  Log:
  Add 'D' suffix to the library name for the 'DEBUG' build
  configuration.
  
  Revision  Changes    Path
  1.7       +9 -0      xml-xerces/c/src/util/Compilers/VCPPDefs.hpp
  
  Index: VCPPDefs.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Compilers/VCPPDefs.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- VCPPDefs.hpp	2000/03/02 19:55:09	1.6
  +++ VCPPDefs.hpp	2000/06/16 21:13:23	1.7
  @@ -56,6 +56,10 @@
   
   /*
    * $Log: VCPPDefs.hpp,v $
  + * Revision 1.7  2000/06/16 21:13:23  rahulj
  + * Add 'D' suffix to the library name for the 'DEBUG' build
  + * configuration.
  + *
    * Revision 1.6  2000/03/02 19:55:09  roddey
    * This checkin includes many changes done while waiting for the
    * 1.1.0 code to be finished. I can't list them all here, but a list is
  @@ -142,4 +146,8 @@
   //  versioning string. This is defined in XercesDefs.hpp which is what this
   //  file is included into.
   // ---------------------------------------------------------------------------
  +#if defined(XERCES_DEBUG)
  +const char* const Xerces_DLLName = "xerces-c_" Xerces_DLLVersionStr "D";
  +#else
   const char* const Xerces_DLLName = "xerces-c_" Xerces_DLLVersionStr;
  +#endif