You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2008/10/16 00:28:03 UTC

svn commit: r705082 - in /xalan/c/trunk: Tests/Performance/ Tests/Threads/ samples/ExternalFunction/ samples/StreamTransform/ samples/TraceListen/

Author: dbertoni
Date: Wed Oct 15 15:28:00 2008
New Revision: 705082

URL: http://svn.apache.org/viewvc?rev=705082&view=rev
Log:
Fixes for missing header files reported on Fedora 9.

Modified:
    xalan/c/trunk/Tests/Performance/TestHarness.hpp
    xalan/c/trunk/Tests/Performance/perf.cpp
    xalan/c/trunk/Tests/Threads/ThreadTest.cpp
    xalan/c/trunk/samples/ExternalFunction/ExternalFunction.cpp
    xalan/c/trunk/samples/StreamTransform/StreamTransform.cpp
    xalan/c/trunk/samples/TraceListen/TraceListen.cpp

Modified: xalan/c/trunk/Tests/Performance/TestHarness.hpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/Tests/Performance/TestHarness.hpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/Tests/Performance/TestHarness.hpp (original)
+++ xalan/c/trunk/Tests/Performance/TestHarness.hpp Wed Oct 15 15:28:00 2008
@@ -23,6 +23,7 @@
 
 
 
+#include <climits>
 #if defined(XALAN_CLASSIC_IOSTREAMS)
 #include <fstream.h>
 #else

Modified: xalan/c/trunk/Tests/Performance/perf.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/Tests/Performance/perf.cpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/Tests/Performance/perf.cpp (original)
+++ xalan/c/trunk/Tests/Performance/perf.cpp Wed Oct 15 15:28:00 2008
@@ -20,6 +20,8 @@
 #include <xalanc/Include/PlatformDefinitions.hpp>
 
 
+
+#include <cstring>
 #if defined(XALAN_CLASSIC_IOSTREAMS)
 #include <iostream.h>
 #else

Modified: xalan/c/trunk/Tests/Threads/ThreadTest.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/Tests/Threads/ThreadTest.cpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/Tests/Threads/ThreadTest.cpp (original)
+++ xalan/c/trunk/Tests/Threads/ThreadTest.cpp Wed Oct 15 15:28:00 2008
@@ -19,9 +19,15 @@
 // Base header file.  Must be first.
 #include <xalanc/Include/PlatformDefinitions.hpp>
 
+
+
 #include <xalanc/Include/XalanMemoryManagement.hpp>
 
+
+
 #include <cassert>
+#include <climits>
+#include <cstring>
 #include <ctime>
 
 

Modified: xalan/c/trunk/samples/ExternalFunction/ExternalFunction.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/samples/ExternalFunction/ExternalFunction.cpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/samples/ExternalFunction/ExternalFunction.cpp (original)
+++ xalan/c/trunk/samples/ExternalFunction/ExternalFunction.cpp Wed Oct 15 15:28:00 2008
@@ -21,6 +21,7 @@
 
 
 #include <cmath>
+#include <cstring>
 #include <ctime>
 #if defined(XALAN_CLASSIC_IOSTREAMS)
 #include <iostream.h>

Modified: xalan/c/trunk/samples/StreamTransform/StreamTransform.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/samples/StreamTransform/StreamTransform.cpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/samples/StreamTransform/StreamTransform.cpp (original)
+++ xalan/c/trunk/samples/StreamTransform/StreamTransform.cpp Wed Oct 15 15:28:00 2008
@@ -20,6 +20,7 @@
 
 
 
+#include <cstring>
 #if defined(XALAN_CLASSIC_IOSTREAMS)
 #include <iostream.h>
 #include <strstream.h>

Modified: xalan/c/trunk/samples/TraceListen/TraceListen.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/samples/TraceListen/TraceListen.cpp?rev=705082&r1=705081&r2=705082&view=diff
==============================================================================
--- xalan/c/trunk/samples/TraceListen/TraceListen.cpp (original)
+++ xalan/c/trunk/samples/TraceListen/TraceListen.cpp Wed Oct 15 15:28:00 2008
@@ -20,6 +20,7 @@
 
 
 
+#include <cstring>
 #if defined(XALAN_CLASSIC_IOSTREAMS)
 #include <fstream.h>
 #include <iostream.h>



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org