2006-10-29 17:29:22 +00:00
|
|
|
Index: library/eclipse.c
|
|
|
|
===================================================================
|
2007-05-24 05:51:41 +00:00
|
|
|
RCS file: /cvsroot/eclipse/org.eclipse.equinox.executable/library/eclipse.c,v
|
|
|
|
retrieving revision 1.20
|
|
|
|
diff -u -r1.20 eclipse.c
|
|
|
|
--- library/eclipse.c 8 Feb 2007 16:57:15 -0000 1.20
|
|
|
|
+++ library/eclipse.c 1 Mar 2007 03:44:19 -0000
|
|
|
|
@@ -330,8 +330,9 @@
|
2006-10-29 17:29:22 +00:00
|
|
|
|
|
|
|
/* Define the required VM arguments (all platforms). */
|
2007-05-24 05:51:41 +00:00
|
|
|
static _TCHAR* cp = NULL;
|
|
|
|
-static _TCHAR* cpValue = NULL;
|
|
|
|
-static _TCHAR** reqVMarg[] = { &cp, &cpValue, NULL }; /* required VM args */
|
|
|
|
+static _TCHAR* cpValue = NULL;
|
|
|
|
+static _TCHAR* sharedConfigurationDir = _T_ECLIPSE("-Dosgi.sharedConfiguration.area=/usr/lib/eclipse/configuration");
|
|
|
|
+static _TCHAR** reqVMarg[] = { &sharedConfigurationDir, &cp, &cpValue, NULL }; /* required VM args */
|
|
|
|
static _TCHAR** userVMarg = NULL; /* user specific args for the Java VM */
|
|
|
|
static _TCHAR** eeVMarg = NULL; /* vm args specified in ee file */
|
|
|
|
static int nEEargs = 0;
|
|
|
|
@@ -915,20 +916,12 @@
|
2006-10-29 17:29:22 +00:00
|
|
|
*/
|
|
|
|
_TCHAR* getProgramDir( )
|
|
|
|
{
|
|
|
|
- _TCHAR* ch;
|
|
|
|
_TCHAR* programDir;
|
|
|
|
+ _TCHAR* temp = _T_ECLIPSE("/usr/share/eclipse/");
|
|
|
|
|
|
|
|
- programDir = malloc( (_tcslen( program ) + 1) * sizeof(_TCHAR) );
|
|
|
|
- _tcscpy( programDir, program );
|
|
|
|
- ch = _tcsrchr( programDir, dirSeparator );
|
|
|
|
- if (ch != NULL)
|
|
|
|
- {
|
|
|
|
- *(ch+1) = _T_ECLIPSE('\0');
|
|
|
|
- return programDir;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- free( programDir );
|
|
|
|
- return NULL;
|
2007-05-24 05:51:41 +00:00
|
|
|
+ programDir = malloc( (_tcslen( temp + 1 )) * sizeof(_TCHAR) );
|
|
|
|
+ _tcscpy( programDir, temp );
|
|
|
|
+ return programDir;
|
2006-10-29 17:29:22 +00:00
|
|
|
}
|
|
|
|
|
2007-05-24 05:51:41 +00:00
|
|
|
static _TCHAR* findStartupJar(){
|
2006-10-29 17:29:22 +00:00
|
|
|
Index: library/gtk/make_linux.mak
|
|
|
|
===================================================================
|
2007-05-24 05:51:41 +00:00
|
|
|
RCS file: /cvsroot/eclipse/org.eclipse.equinox.executable/library/gtk/make_linux.mak,v
|
|
|
|
retrieving revision 1.10
|
|
|
|
diff -u -r1.10 make_linux.mak
|
|
|
|
--- library/gtk/make_linux.mak 7 Feb 2007 18:13:48 -0000 1.10
|
|
|
|
+++ library/gtk/make_linux.mak 1 Mar 2007 03:44:19 -0000
|
|
|
|
@@ -43,7 +43,7 @@
|
|
|
|
DLL = $(PROGRAM_LIBRARY)
|
|
|
|
LIBS = `pkg-config --libs-only-L gtk+-2.0` -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lgdk-x11-2.0 -lpthread -ldl
|
|
|
|
LFLAGS = -shared -fpic -Wl,--export-dynamic
|
|
|
|
-CFLAGS = -O -s -Wall\
|
|
|
|
+CFLAGS = -O -s -Wall -g \
|
2006-10-29 17:29:22 +00:00
|
|
|
-fpic \
|
|
|
|
-DLINUX \
|
|
|
|
-DMOZILLA_FIX \
|