You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/11/09 15:01:52 UTC

svn commit: r834069 - in /commons/sandbox/runtime/trunk: build.xml src/main/native/configure.xml

Author: mturk
Date: Mon Nov  9 14:01:44 2009
New Revision: 834069

URL: http://svn.apache.org/viewvc?rev=834069&view=rev
Log:
Use info insted print as custom task name

Modified:
    commons/sandbox/runtime/trunk/build.xml
    commons/sandbox/runtime/trunk/src/main/native/configure.xml

Modified: commons/sandbox/runtime/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/build.xml?rev=834069&r1=834068&r2=834069&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/build.xml (original)
+++ commons/sandbox/runtime/trunk/build.xml Mon Nov  9 14:01:44 2009
@@ -195,7 +195,7 @@
             classname="${build.package.name}.ant.ConditionalExecTask">
             <classpath refid="task.classpath"/>
         </taskdef>
-        <taskdef name="print"
+        <taskdef name="info"
             classname="${build.package.name}.ant.FormattedEchoTask">
             <classpath refid="task.classpath"/>
         </taskdef>

Modified: commons/sandbox/runtime/trunk/src/main/native/configure.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure.xml?rev=834069&r1=834068&r2=834069&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure.xml (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure.xml Mon Nov  9 14:01:44 2009
@@ -97,7 +97,7 @@
             classname="${build.package.name}.ant.ConditionalExecTask">
             <classpath refid="task.classpath"/>
         </taskdef>
-        <taskdef name="print"
+        <taskdef name="info"
             classname="${build.package.name}.ant.FormattedEchoTask">
             <classpath refid="task.classpath"/>
         </taskdef>
@@ -136,7 +136,7 @@
             </fileset>
         </delete>
         <property name="@{result}" value="0"/>
-        <print format="%1$-45s %2$s" message="Checking for sizeof(@{type}) : ${@{result}}"/>
+        <info format="%1$-45s %2$s" message="Checking for sizeof(@{type}) : ${@{result}}"/>
         </sequential>
     </macrodef>
 
@@ -170,7 +170,7 @@
             </fileset>
         </delete>
         <property name="@{result}" value="0"/>
-        <print format="%1$-45s %2$s" message="Checking for &lt;@{file}.h&gt; : ${have.res}"/>
+        <info format="%1$-45s %2$s" message="Checking for &lt;@{file}.h&gt; : ${have.res}"/>
         </sequential>
     </macrodef>
 
@@ -203,7 +203,7 @@
             </fileset>
         </delete>
         <property name="@{result}" value="0"/>
-        <print format="%1$-45s %2$s" message="Checking for @{file} library : ${have.res}"/>
+        <info format="%1$-45s %2$s" message="Checking for @{file} library : ${have.res}"/>
         </sequential>
     </macrodef>
 
@@ -265,6 +265,6 @@
             <have-library file="bufferoverflow"/>
             <have-library file="ktmw32"/>
         </sequence>
-        <print format="#define HAVE_WINDOWS_H   %1s" message="${config.have.windows}"/>
+        <info format="#define HAVE_WINDOWS_H   %1s" message="${config.have.windows}"/>
     </target>
 </project>