Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2016-12-02 07:57:56 +0000
committerAlexander Kurtakov2016-12-02 07:58:47 +0000
commit0f45d534d667dcf5e2522428d6cb179fcc3c8a6a (patch)
tree28c54412d8b6687ca1c13b165c3b9adf10abe5fb
parentc24a2f4689d418bde6b582e64b10694082fff095 (diff)
downloadrt.equinox.framework-0f45d534d667dcf5e2522428d6cb179fcc3c8a6a.tar.gz
rt.equinox.framework-0f45d534d667dcf5e2522428d6cb179fcc3c8a6a.tar.xz
rt.equinox.framework-0f45d534d667dcf5e2522428d6cb179fcc3c8a6a.zip
Bug 508577 - Remove NETSCAPE_FIX
Function not implemented and not used anywhere. Change-Id: I52bdc4fa7e05c9c9a94526eedc3aa933cb9eb637 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/eclipseNix.c8
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/make_hpux.mak3
2 files changed, 2 insertions, 9 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/eclipseNix.c b/features/org.eclipse.equinox.executable.feature/library/eclipseNix.c
index c6062b258..bda8b3cb9 100644
--- a/features/org.eclipse.equinox.executable.feature/library/eclipseNix.c
+++ b/features/org.eclipse.equinox.executable.feature/library/eclipseNix.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * Copyright (c) 2008, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -56,9 +56,6 @@ static const char* jvmLocations [] = { "j9vm", "../jre/bin/j9vm",
static void adjustLibraryPath( char * vmLibrary );
static char * findLib(char * command);
-#ifdef NETSCAPE_FIX
-extern void fixEnvForNetscape();
-#endif /* NETSCAPE_FIX */
char * findVMLibrary( char* command ) {
char * lib = findLib(command);
@@ -121,9 +118,6 @@ static void adjustLibraryPath( char * vmLibrary ) {
#ifdef MOZILLA_FIX
fixEnvForMozilla();
#endif /* MOZILLA_FIX */
-#ifdef NETSCAPE_FIX
- fixEnvForNetscape();
-#endif /* NETSCAPE_FIX */
paths = getVMLibrarySearchPath(vmLibrary);
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/make_hpux.mak b/features/org.eclipse.equinox.executable.feature/library/gtk/make_hpux.mak
index d0227efc2..c4a12d385 100644
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/make_hpux.mak
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/make_hpux.mak
@@ -1,5 +1,5 @@
#*******************************************************************************
-# Copyright (c) 2000, 2010 IBM Corporation and others.
+# Copyright (c) 2000, 2016 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -46,7 +46,6 @@ GTK_LIBS = \
LFLAGS = ${M_ARCH} -shared -static-libgcc
# -Wl,--export-dynamic
CFLAGS = ${M_ARCH} -O -s \
- -DNETSCAPE_FIX \
-DDEFAULT_OS="\"$(DEFAULT_OS)\"" \
-DDEFAULT_OS_ARCH="\"$(DEFAULT_OS_ARCH)\"" \
-DDEFAULT_WS="\"$(DEFAULT_WS)\"" \

Back to the top