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 sh...@apache.org on 2011/06/14 20:40:05 UTC

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

Author: shv
Date: Tue Jun 14 18:40:05 2011
New Revision: 1135736

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

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

Modified: hadoop/common/branches/branch-0.20-security/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/CHANGES.txt?rev=1135736&r1=1135735&r2=1135736&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20-security/CHANGES.txt Tue Jun 14 18:40:05 2011
@@ -173,6 +173,8 @@ Release 0.20.204.0 - unreleased
     HDFS-1767. Namenode ignores non-initial block report from datanodes
     when in safemode during startup. (Matt Foley via suresh)
 
+    MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via shv)
+
 Release 0.20.203.1 - Unreleased
 
     HADOOP-7330. Fix MetricsSourceAdapter to use the value instead of the 

Modified: hadoop/common/branches/branch-0.20-security/src/c++/pipes/api/hadoop/Pipes.hh
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/src/c%2B%2B/pipes/api/hadoop/Pipes.hh?rev=1135736&r1=1135735&r2=1135736&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/src/c++/pipes/api/hadoop/Pipes.hh (original)
+++ hadoop/common/branches/branch-0.20-security/src/c++/pipes/api/hadoop/Pipes.hh Tue Jun 14 18:40:05 2011
@@ -31,6 +31,8 @@
 #include <string>
 #endif
 
+#include <stdint.h>
+
 namespace HadoopPipes {
 
 /**

Modified: hadoop/common/branches/branch-0.20-security/src/c++/utils/api/hadoop/SerialUtils.hh
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/src/c%2B%2B/utils/api/hadoop/SerialUtils.hh?rev=1135736&r1=1135735&r2=1135736&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/src/c++/utils/api/hadoop/SerialUtils.hh (original)
+++ hadoop/common/branches/branch-0.20-security/src/c++/utils/api/hadoop/SerialUtils.hh Tue Jun 14 18:40:05 2011
@@ -19,6 +19,7 @@
 #define HADOOP_SERIAL_UTILS_HH
 
 #include <string>
+#include <stdint.h>
 
 namespace HadoopUtils {