$OpenBSD: patch-build_xml,v 1.1 2005/08/09 14:49:09 kurt Exp $
--- build.xml.orig	Mon Jun 27 14:55:26 2005
+++ build.xml	Sun Apr 16 21:49:51 2006
@@ -57,17 +57,15 @@
 		<mkdir dir="${swtdir}" />
 		<move todir="${swtdir}/">
 			<fileset dir="${swtlibs}">
-				<include name="**/*.so" />
+				<include name="**/*.so.*" />
 			</fileset>
 		</move>
 		<!--unzip launcher -->
 		<property name="launcherlibs" value="${buildDirectory}/launchertmp" />
 		<mkdir dir="${launcherlibs}" />
-		<unzip dest="${launcherlibs}">
-			<fileset dir="${buildDirectory}/plugins/org.eclipse.platform.source/src/">
-				<include name="org.eclipse.platform_*/launchersrc.zip" />
-			</fileset>
-		</unzip>
+		<copy todir="${launcherlibs}">
+			<fileset dir="${buildDirectory}/features/org.eclipse.platform.launchers" includes="**" excludes="**/*.orig"/>
+		</copy>
 		<exec dir="${launcherlibs}/library/${installWs}/" executable="sh" failonerror="true">
 			<arg line="build.sh" />
 		</exec>
@@ -232,7 +230,7 @@
 		<condition property="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter">
 			<available file="${basedir}/ecj.jar" />
 		</condition>
-		<condition property="compilerArg" value="-enableJavadoc -encoding ISO-8859-1">
+		<condition property="compilerArg" value="-enableJavadoc -encoding UTF-8">
 			<equals arg1="${build.compiler}" arg2="org.eclipse.jdt.core.JDTCompilerAdapter" />
 		</condition>
 		<fail message="The Eclipse compiler (ecj.jar) cannot be found.">
@@ -246,6 +244,7 @@
 		<property name="javacSource" value="1.3" />
 		<property name="javacTarget" value="1.2" />
 		<property name="javacDebugInfo" value="true" />
+		<property name="javacVerbose" value="false" />
 		<property name="javacFailOnError" value="true" />
 
 		<!--required property setting to build bundles in Eclipse 3.x stream builds -->
@@ -265,7 +264,7 @@
 
 		<!--used to add doc plug-ins to result after initial assembly-->
 		<condition property="archive.format" value="tar">
-			<equals arg1="${installOs}" arg2="linux" />
+			<equals arg1="${installOs}" arg2="openbsd" />
 		</condition>
 		<property name="archive.format" value="zip" />
 	</target>
