Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-11-09 06:43:53 +0000
committerSravan Kumar Lakkimsetti2018-11-09 06:43:53 +0000
commitc992dfc8169c8f76d68b1dc8b4dbc725badd6385 (patch)
treeb918c12662bda1865c20e68a471a25bac5b48e48
parent0137878fdaea5cc332dc806afb1c5a8daca5a8c4 (diff)
downloadeclipse.platform.swt-c992dfc8169c8f76d68b1dc8b4dbc725badd6385.tar.gz
eclipse.platform.swt-c992dfc8169c8f76d68b1dc8b4dbc725badd6385.tar.xz
eclipse.platform.swt-c992dfc8169c8f76d68b1dc8b4dbc725badd6385.zip
Revert "Bug 536766 - Drop 32-bit support"
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 5c85ccb5cf..411a88a183 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -67,9 +67,17 @@
</antcall>
<antcall target="check_fragment_libraries">
<param name="library_count" value="8"/>
+ <param name="fragment" value="org.eclipse.swt.gtk.linux.x86"/>
+ </antcall>
+ <antcall target="check_fragment_libraries">
+ <param name="library_count" value="8"/>
<param name="fragment" value="org.eclipse.swt.gtk.linux.x86_64"/>
</antcall>
<antcall target="check_fragment_libraries">
+ <param name="library_count" value="5"/>
+ <param name="fragment" value="org.eclipse.swt.win32.win32.x86"/>
+ </antcall>
+ <antcall target="check_fragment_libraries">
<param name="library_count" value="4"/>
<param name="fragment" value="org.eclipse.swt.win32.win32.x86_64"/>
</antcall>
@@ -78,7 +86,7 @@
<target name="check_fragment_libraries" depends="get_version">
<echo>Checking ${fragment}</echo>
<property name="checkdir" value="~/build/check_libraries"/>
- <property name="library_count" value="23"/>
+ <property name="library_count" value="36"/>
<property name="fragment" value=""/>
<fileset id="match" dir="${repo.bin}/bundles/${fragment}" includes="**/org.eclipse.swt.gtk.linux.ppc64le/**, **/org.eclipse.swt.gtk.linux.x86*/**, **/org.eclipse.swt.win32.*/**, **/org.eclipse.swt.cocoa.macosx.*/**">
<filename regex="[0-9][0-9][0-9][0-9]."/>

Back to the top