summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f940dc6)
raw | patch | inline | side by side (parent: f940dc6)
author | Krzysztof Kosiński <tweenk.pl@gmail.com> | |
Sun, 28 Mar 2010 23:23:56 +0000 (01:23 +0200) | ||
committer | Krzysztof Kosiński <tweenk.pl@gmail.com> | |
Sun, 28 Mar 2010 23:23:56 +0000 (01:23 +0200) |
src/main.cpp | patch | blob | history |
diff --git a/src/main.cpp b/src/main.cpp
index c50ba7311b652e00c9344199cefe963a5901100f..a6dfb37f04e41367180fa908354a290669189d44 100644 (file)
--- a/src/main.cpp
+++ b/src/main.cpp
gchar *perl = g_build_filename(exe, "python", NULL);
gchar *pythonlib = g_build_filename(exe, "python", "Lib", NULL);
gchar *pythondll = g_build_filename(exe, "python", "DLLs", NULL);
- gchar *extdir = g_build_filename(exe, "share", "extensions", NULL);
// Python 2.x needs short paths in PYTHONPATH.
// Otherwise it doesn't work when Inkscape is installed in Unicode directories.
gchar *python_s = g_win32_locale_filename_from_utf8(python);
gchar *pythonlib_s = g_win32_locale_filename_from_utf8(pythonlib);
gchar *pythondll_s = g_win32_locale_filename_from_utf8(pythondll);
- gchar *extdir_s = g_win32_locale_filename_from_utf8(extdir);
gchar *new_path;
gchar *new_pythonpath;
new_path = g_strdup_printf("%s;%s;%s;%s", exe, python, scripts, perl);
}
if (pythonpath) {
- new_pythonpath = g_strdup_printf("%s;%s;%s;%s;%s",
- extdir_s, python_s, pythonlib_s, pythondll_s, pythonpath);
- } else {
new_pythonpath = g_strdup_printf("%s;%s;%s;%s",
- extdir_s, python_s, pythonlib_s, pythondll_s);
+ python_s, pythonlib_s, pythondll_s, pythonpath);
+ } else {
+ new_pythonpath = g_strdup_printf("%s;%s;%s",
+ python_s, pythonlib_s, pythondll_s);
}
g_setenv("PATH", new_path, TRUE);
}
#endif
+static void set_extensions_env()
+{
+ gchar const *pythonpath = g_getenv("PYTHONPATH");
+ gchar *extdir;
+
+#ifdef WIN32
+ extdir = g_win32_locale_filename_from_utf8(INKSCAPE_EXTENSIONDIR);
+#else
+ extdir = g_strdup(INKSCAPE_EXTENSIONDIR);
+#endif
+
+ gchar *new_pythonpath = g_strdup_printf("%s" G_SEARCHPATH_SEPARATOR_S "%s",
+ extdir, pythonpath);
+ g_setenv("PYTHONPATH", new_pythonpath, TRUE);
+ g_free(extdir);
+ g_free(new_pythonpath);
+}
+
/**
* This is the classic main() entry point of the program, though on some
* architectures it might be called by something else.
textdomain(GETTEXT_PACKAGE);
#endif
+ set_extensions_env();
+
// Prevents errors like "Unable to wrap GdkPixbuf..." (in nr-filter-image.cpp for example)
Gtk::Main::init_gtkmm_internals();