Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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