Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-05-29 16:39:17 +0000
committerTomasz Zarna2008-05-29 16:39:17 +0000
commitef8466c9e1045939f9affd3fe333acfdaec060cc (patch)
tree62c55e2eb8e0057b27553455f64db0f1a977cbbf /bundles
parent8bdc4e9bb1661fa753922fb18c6355e4009c4aa7 (diff)
downloadeclipse.platform.team-ef8466c9e1045939f9affd3fe333acfdaec060cc.tar.gz
eclipse.platform.team-ef8466c9e1045939f9affd3fe333acfdaec060cc.tar.xz
eclipse.platform.team-ef8466c9e1045939f9affd3fe333acfdaec060cc.zip
bug 234662: [Proxy] Disable Gnome lib - Eclipse on RHEL/Gnome with IBM vm 1.4.2 crashes
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/proxy/unix/UnixProxyProvider.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/proxy/unix/UnixProxyProvider.java b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/proxy/unix/UnixProxyProvider.java
index 392cdd9f2..c33a6aedb 100644
--- a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/proxy/unix/UnixProxyProvider.java
+++ b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/proxy/unix/UnixProxyProvider.java
@@ -24,9 +24,10 @@ import org.eclipse.core.net.proxy.IProxyData;
public class UnixProxyProvider extends AbstractProxyProvider {
- private static final String LIBRARY_GCONF2 = "gconf-2"; //$NON-NLS-1$
+ // Gnome support disabled - see bug 234662
+ // private static final String LIBRARY_GCONF2 = "gconf-2"; //$NON-NLS-1$
- private static final String LIBRARY_NAME = "proxygnome"; //$NON-NLS-1$
+ // private static final String LIBRARY_NAME = "proxygnome"; //$NON-NLS-1$
private static boolean isGnomeLibLoaded = false;
@@ -34,7 +35,8 @@ public class UnixProxyProvider extends AbstractProxyProvider {
// We have to load this here otherwise gconf seems to have problems
// causing hangs and various other bad behavior,
// please don't move this to be initialized on another thread.
- loadGnomeLib();
+ // Gnome support disabled - see bug 234662
+ // loadGnomeLib();
}
public UnixProxyProvider() {
@@ -165,6 +167,8 @@ public class UnixProxyProvider extends AbstractProxyProvider {
return props.getProperty(env);
}
+ // Gnome support disabled - see bug 234662
+ /*
private static void loadGnomeLib() {
try {
System.loadLibrary(LIBRARY_GCONF2);
@@ -190,6 +194,7 @@ public class UnixProxyProvider extends AbstractProxyProvider {
+ System.mapLibraryName(LIBRARY_NAME));
}
}
+ */
private void debugPrint(String[] strs) {
for (int i = 0; i < strs.length; i++)

Back to the top