You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@locus.apache.org on 2000/11/30 15:41:34 UTC

cvs commit: xml-xalan/c/src/PlatformSupport XalanFileOutputStream.cpp

auriemma    00/11/30 06:41:34

  Modified:    c/src/PlatformSupport XalanFileOutputStream.cpp
  Log:
  HP port based on work from Trevor Smigiel and Troy Heber.
  
  Revision  Changes    Path
  1.3       +7 -1      xml-xalan/c/src/PlatformSupport/XalanFileOutputStream.cpp
  
  Index: XalanFileOutputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XalanFileOutputStream.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XalanFileOutputStream.cpp	2000/11/02 01:45:38	1.2
  +++ XalanFileOutputStream.cpp	2000/11/30 14:41:32	1.3
  @@ -60,8 +60,14 @@
   
   
   #include <cerrno>
  -#include <strstream>
   
  +
  +
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <strstream.h>
  +#else
  +#include <strstream>
  +#endif
   
   
   #include <Include/XalanAutoPtr.hpp>