From dd1c89db4520d13312f247585983c87dbfeb9a0e Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 3 Mar 2008 15:43:49 +0000 Subject: On Windows, set PATH to include Evolution's "bin" folder and the 2008-03-03 Tor Lillqvist * main.c: On Windows, set PATH to include Evolution's "bin" folder and the "lib/evolution/$(BASE_VERSION)/components" folder. Set BONOBO_ACTIVATION_PATH to the "lib/bonobo/servers" folder svn path=/trunk/; revision=35121 --- shell/ChangeLog | 6 ++++++ shell/main.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 68 insertions(+), 1 deletion(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index 30d2b85a77..3c5e3a0a0e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2008-03-03 Tor Lillqvist + + * main.c: On Windows, set PATH to include Evolution's "bin" folder + and the "lib/evolution/$(BASE_VERSION)/components" folder. Set + BONOBO_ACTIVATION_PATH to the "lib/bonobo/servers" folder + 2008-03-03 Johnny Jacob * e-shell-window-commands.c (authors): Missed '"' :-) . diff --git a/shell/main.c b/shell/main.c index 5a81cdd905..6513e8a161 100644 --- a/shell/main.c +++ b/shell/main.c @@ -25,6 +25,11 @@ #include #include +#ifdef G_OS_WIN32 +#define WIN32_LEAN_AND_MEAN +#include +#endif + #include "e-util/e-dialog-utils.h" #include "e-util/e-bconf-map.h" @@ -549,7 +554,7 @@ setup_segv_redirect (void) } #else -#define setup_segv_redirect() 0 +#define setup_segv_redirect() (void)0 #endif static gint @@ -591,6 +596,61 @@ static const GOptionEntry options[] = { { NULL } }; +#ifdef G_OS_WIN32 +static void +set_paths (void) +{ + /* Set PATH to include the Evolution executable's folder + * and the lib/evolution/$(BASE_VERSION)/components folder. + */ + wchar_t exe_filename[MAX_PATH]; + wchar_t *p; + gchar *exe_folder_utf8; + gchar *components_folder_utf8; + gchar *top_folder_utf8; + gchar *path; + + GetModuleFileNameW (NULL, exe_filename, G_N_ELEMENTS (exe_filename)); + + p = wcsrchr (exe_filename, L'\\'); + g_assert (p != NULL); + + *p = L'\0'; + exe_folder_utf8 = g_utf16_to_utf8 (exe_filename, -1, NULL, NULL, NULL); + + p = wcsrchr (exe_filename, L'\\'); + g_assert (p != NULL); + + *p = L'\0'; + top_folder_utf8 = g_utf16_to_utf8 (exe_filename, -1, NULL, NULL, NULL); + components_folder_utf8 = + g_strconcat (top_folder_utf8, + "/lib/evolution/" BASE_VERSION "/components", + NULL); + + path = g_build_path (";", + exe_folder_utf8, + components_folder_utf8, + g_getenv ("PATH"), + NULL); + if (!g_setenv ("PATH", path, TRUE)) + g_warning ("Could not set PATH for Evolution and its child processes"); + + g_free (path); + + /* Set BONOBO_ACTIVATION_PATH */ + if (g_getenv ("BONOBO_ACTIVATION_PATH" ) == NULL) { + path = g_build_filename (top_folder_utf8, + "lib/bonobo/servers", + NULL); + if (!g_setenv ("BONOBO_ACTIVATION_PATH", path, TRUE)) + g_warning ("Could not set BONOBO_ACTIVATION_PATH"); + g_free (path); + } + g_free (top_folder_utf8); +} +#endif + int main (int argc, char **argv) { @@ -643,6 +703,7 @@ main (int argc, char **argv) #ifdef G_OS_WIN32 gtk_rc_parse_string ("gtk-fallback-icon-theme = \"gnome\""); + set_paths (); #endif client = gconf_client_get_default (); -- cgit v1.2.3