You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ts...@apache.org on 2014/01/20 17:44:02 UTC

svn commit: r1559774 - /incubator/log4cxx/trunk/src/ant/apr-util-build.xml

Author: tschoening
Date: Mon Jan 20 16:44:01 2014
New Revision: 1559774

URL: http://svn.apache.org/r1559774
Log:
Fixed indentation and tried to increase readibility with a semi consistent codestyle.

Modified:
    incubator/log4cxx/trunk/src/ant/apr-util-build.xml

Modified: incubator/log4cxx/trunk/src/ant/apr-util-build.xml
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/ant/apr-util-build.xml?rev=1559774&r1=1559773&r2=1559774&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/ant/apr-util-build.xml (original)
+++ incubator/log4cxx/trunk/src/ant/apr-util-build.xml Mon Jan 20 16:44:01 2014
@@ -144,17 +144,23 @@
 		depends="unix-configure, win-configure">
 	<condition	property="has-iconv" value="1">
 		<isfileselected file="${include.dir}/apu.h">
-			<contains text="#define APR_HAVE_ICONV 1" ignorewhitespace="true" />
+			<contains	text="#define APR_HAVE_ICONV 1"
+						ignorewhitespace="true"
+			/>
 		</isfileselected>
 	</condition>
 	<condition	property="has-iconv" value="1">
 		<isfileselected file="${include.dir}/apu.h">
-			<contains text="#define APU_HAVE_ICONV 1" ignorewhitespace="true" />
+			<contains	text="#define APU_HAVE_ICONV 1"
+						ignorewhitespace="true"
+			/>
 		</isfileselected>
 	</condition>
 	<condition	property="has-sqlite3" value="1">
 		<isfileselected file="${include.dir}/apu.h">
-			<contains text="#define APU_HAVE_SQLITE3 1" ignorewhitespace="true" />
+			<contains	text="#define APU_HAVE_SQLITE3 1"
+						ignorewhitespace="true"
+			/>
 		</isfileselected>
 	</condition>
 </target>