Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ant-dev] Error refreshing ant projects?

On Tuesday, April 29, 2003, at 06:00 PM, Darin Swanson wrote:

No, more configuration issues.

One more small config issue. My build on OSX is failing. Here's a patch that remedies the problem.

Blake Meike

Index: buildfiles/buildExtraJAR.xml
===================================================================
RCS file: /home/eclipse/org.eclipse.ant.ui/buildfiles/buildExtraJAR.xml,v
retrieving revision 1.2
diff -u -r1.2 buildExtraJAR.xml
--- buildfiles/buildExtraJAR.xml	25 Apr 2003 16:05:46 -0000	1.2
+++ buildfiles/buildExtraJAR.xml	30 Apr 2003 11:52:14 -0000
@@ -18,9 +18,11 @@
 		<property name="win32.jar" value="${basedir}/../org.eclipse.swt.win32/ws/win32/swt.jar"/>
 		<property name="gtk.jar" value="${basedir}/../org.eclipse.swt.gtk/ws/gtk/swt.jar"/>
 		<property name="motif.jar" value="${basedir}/../org.eclipse.swt.motif/ws/motif/swt.jar"/>
+		<property name="osx.jar" value="${basedir}/../org.eclipse.swt.carbon/ws/carbon/swt.jar"/>
 		<available file="${win32.jar}" property="swt.jar" value="${win32.jar}"/>
 		<available file="${gtk.jar}" property="swt.jar" value="${gtk.jar}"/>
 		<available file="${motif.jar}" property="swt.jar" value="${motif.jar}"/>
+		<available file="${osx.jar}" property="swt.jar" value="${osx.jar}"/>
 	</target>
 
 	<target name="properties" if="eclipse.running">

Back to the top