summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp3
-rw-r--r--src/test-helpers.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4e2f2fd2b..d425b88bb 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1283,12 +1283,15 @@ int sp_main_console(int argc, char const **argv)
{
/* We are started in text mode */
+#if !GLIB_CHECK_VERSION(2,36,0)
/* Do this g_type_init(), so that we can use Xft/Freetype2 (Pango)
* in a non-Gtk environment. Used in libnrtype's
* FontInstance.cpp and FontFactory.cpp.
* http://mail.gnome.org/archives/gtk-list/2003-December/msg00063.html
*/
g_type_init();
+#endif
+
char **argv2 = const_cast<char **>(argv);
gtk_init_check( &argc, &argv2 );
//setlocale(LC_ALL, "");
diff --git a/src/test-helpers.h b/src/test-helpers.h
index bda48599e..001356e65 100644
--- a/src/test-helpers.h
+++ b/src/test-helpers.h
@@ -23,7 +23,10 @@ T* createSuiteAndDocument( void (*fun)(T*&) )
{
T* suite = 0;
+#if !GLIB_CHECK_VERSION(2,36,0)
g_type_init();
+#endif
+
Inkscape::GC::init();
if ( !inkscape_get_instance() )
{