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 ma...@apache.org on 2012/03/24 23:41:04 UTC

svn commit: r1304952 - in /hadoop/common/branches/branch-1.0: CHANGES.txt build.xml src/native/configure

Author: mattf
Date: Sat Mar 24 22:41:04 2012
New Revision: 1304952

URL: http://svn.apache.org/viewvc?rev=1304952&view=rev
Log:
merge HADOOP-8201. create the configure script for native compilation as part of the build. Contributed by Giri Kesavan.

Removed:
    hadoop/common/branches/branch-1.0/src/native/configure
Modified:
    hadoop/common/branches/branch-1.0/CHANGES.txt   (contents, props changed)
    hadoop/common/branches/branch-1.0/build.xml

Modified: hadoop/common/branches/branch-1.0/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1.0/CHANGES.txt?rev=1304952&r1=1304951&r2=1304952&view=diff
==============================================================================
--- hadoop/common/branches/branch-1.0/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1.0/CHANGES.txt Sat Mar 24 22:41:04 2012
@@ -1,5 +1,13 @@
 Hadoop Change Log
 
+Release 1.0.3 - unreleased
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  BUG FIXES
+
     HADOOP-6924. Adds a directory to the list of directories to search for the libjvm.so file. 
     The new directory is found by running a 'find' command and the first output is taken. 
     This was done to handle the build of Hadoop with IBM's JDK. (Stephen Watt, 
@@ -11,7 +19,10 @@ Hadoop Change Log
     HADOOP-8188. Fixes the build process to do with jsvc, with IBM's JDK 
     as the underlying jdk. (ddas)
 
-Release 1.0.2 - 2012.03.18
+    HDFS-3127. Do not throw exceptions when FSImage.restoreStorageDirs() failes.
+    (Brandon Li via szetszwo)
+
+Release 1.0.2 - 2012.03.24
 
   NEW FEATURES
 
@@ -71,8 +82,8 @@ Release 1.0.2 - 2012.03.18
     HADOOP-8132. 64bit secure datanodes do not start as the jsvc path is wrong
     (Arpit Gupta via mattf)
 
-    HDFS-3127. Do not throw exceptions when FSImage.restoreStorageDirs() failes.
-    (Brandon Li via szetszwo)
+    HADOOP-8201. create the configure script for native compilation as part of
+    the build (Giri Kesavan via mattf)
 
 Release 1.0.1 - 2012.02.14
 

Propchange: hadoop/common/branches/branch-1.0/CHANGES.txt
------------------------------------------------------------------------------
  Merged /hadoop/common/branches/branch-1.0.2/CHANGES.txt:r1304948

Modified: hadoop/common/branches/branch-1.0/build.xml
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1.0/build.xml?rev=1304952&r1=1304951&r2=1304952&view=diff
==============================================================================
--- hadoop/common/branches/branch-1.0/build.xml (original)
+++ hadoop/common/branches/branch-1.0/build.xml Sat Mar 24 22:41:04 2012
@@ -610,7 +610,14 @@
     </antcall> 
   </target>
 
-  <target name="compile-core-native" depends="compile-core-classes"
+  <target name="create-native-configure">
+    <exec executable="autoreconf" dir="${native.src.dir}" searchpath="yes" 
+          failonerror="yes">
+       <arg value="-if"/>
+    </exec>
+  </target>
+
+  <target name="compile-core-native" depends="create-native-configure, compile-core-classes"
           if="compile.native">
   	
     <mkdir dir="${build.native}/lib"/>