summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2007-05-30 17:43:25 +0000
committerGrant Gayed <ggayed>2007-05-30 17:43:25 +0000
commit788aa210199a74de286d6a077ccd83db9fcc48c1 (patch)
treef49d9348ad1dbbddff9e0c240efdf53f5e45c0cb
parent85625d4077e67fb41e068bd4946dc965a2537fe9 (diff)
downloadeclipse.platform.swt-788aa210199a74de286d6a077ccd83db9fcc48c1.tar.gz
eclipse.platform.swt-788aa210199a74de286d6a077ccd83db9fcc48c1.tar.xz
eclipse.platform.swt-788aa210199a74de286d6a077ccd83db9fcc48c1.zip
189465
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java20
1 files changed, 5 insertions, 15 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
index 7c1743e279..f3070f873c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
@@ -152,21 +152,11 @@ public void create (Composite parent, int style) {
Library.loadLibrary ("swt-xpcominit"); //$NON-NLS-1$
initLoaded = true;
} catch (UnsatisfiedLinkError e) {
- try {
- /*
- * The initial loadLibrary attempt may have failed as a result of the user's
- * system not having libstdc++.so.6 installed, so try to load the alternate
- * swt xpcominit library that depends on libswtc++.so.5 instead.
- */
- Library.loadLibrary ("swt-xpcominit-gcc3"); //$NON-NLS-1$
- initLoaded = true;
- } catch (UnsatisfiedLinkError ex) {
- /*
- * If this library still failed to load then do not attempt to detect a
- * xulrunner to use. The Browser may still be usable if MOZILLA_FIVE_HOME
- * points at a GRE.
- */
- }
+ /*
+ * If this library failed to load then do not attempt to detect a
+ * xulrunner to use. The Browser may still be usable if MOZILLA_FIVE_HOME
+ * points at a GRE.
+ */
}
} else {
mozillaPath += SEPARATOR_OS + delegate.getLibraryName ();