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>