You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cd...@apache.org on 2010/02/12 11:26:49 UTC

svn commit: r909342 - in /hadoop/common/branches/branch-0.20: CHANGES.txt src/c++/pipes/api/hadoop/Pipes.hh src/c++/utils/api/hadoop/SerialUtils.hh

Author: cdouglas
Date: Fri Feb 12 10:26:48 2010
New Revision: 909342

URL: http://svn.apache.org/viewvc?rev=909342&view=rev
Log:
MAPREDUCE-1251. c++ utils doesn't compile. Contributed by Eli Collins

Modified:
    hadoop/common/branches/branch-0.20/CHANGES.txt
    hadoop/common/branches/branch-0.20/src/c++/pipes/api/hadoop/Pipes.hh
    hadoop/common/branches/branch-0.20/src/c++/utils/api/hadoop/SerialUtils.hh

Modified: hadoop/common/branches/branch-0.20/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/CHANGES.txt?rev=909342&r1=909341&r2=909342&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20/CHANGES.txt Fri Feb 12 10:26:48 2010
@@ -113,6 +113,8 @@
     HADOOP-5611. Fix C++ libraries to build on Debian Lenny. (Todd Lipcon
     via tomwhite)
 
+    MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via tomwhite)
+
 Release 0.20.1 - 2009-09-01
 
   INCOMPATIBLE CHANGES

Modified: hadoop/common/branches/branch-0.20/src/c++/pipes/api/hadoop/Pipes.hh
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/src/c%2B%2B/pipes/api/hadoop/Pipes.hh?rev=909342&r1=909341&r2=909342&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/src/c++/pipes/api/hadoop/Pipes.hh (original)
+++ hadoop/common/branches/branch-0.20/src/c++/pipes/api/hadoop/Pipes.hh Fri Feb 12 10:26:48 2010
@@ -31,6 +31,8 @@
 #include <string>
 #endif
 
+#include <stdint.h>
+
 namespace HadoopPipes {
 
 /**

Modified: hadoop/common/branches/branch-0.20/src/c++/utils/api/hadoop/SerialUtils.hh
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/src/c%2B%2B/utils/api/hadoop/SerialUtils.hh?rev=909342&r1=909341&r2=909342&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/src/c++/utils/api/hadoop/SerialUtils.hh (original)
+++ hadoop/common/branches/branch-0.20/src/c++/utils/api/hadoop/SerialUtils.hh Fri Feb 12 10:26:48 2010
@@ -19,6 +19,7 @@
 #define HADOOP_SERIAL_UTILS_HH
 
 #include <string>
+#include <stdint.h>
 
 namespace HadoopUtils {