summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mate-calc-cmd.c2
-rw-r--r--src/mate-calc.c2
-rw-r--r--src/test-mp-equation.c2
-rw-r--r--src/test-mp.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/mate-calc-cmd.c b/src/mate-calc-cmd.c
index e65ac5a..ed6b556 100644
--- a/src/mate-calc-cmd.c
+++ b/src/mate-calc-cmd.c
@@ -74,7 +74,9 @@ main(int argc, char **argv)
/* Seed random number generator. */
srand48((long) time((time_t *) 0));
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
setlocale(LC_ALL, "");
result_serializer = mp_serializer_new(MP_DISPLAY_FORMAT_AUTOMATIC, 10, 9);
diff --git a/src/mate-calc.c b/src/mate-calc.c
index 39c7f23..0094be8 100644
--- a/src/mate-calc.c
+++ b/src/mate-calc.c
@@ -189,7 +189,9 @@ int main(int argc, char **argv)
gchar *source_currency, *target_currency;
gchar *source_units, *target_units;
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init();
+#endif
setlocale(LC_ALL, "");
bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR);
diff --git a/src/test-mp-equation.c b/src/test-mp-equation.c
index 95bb4a8..6460665 100644
--- a/src/test-mp-equation.c
+++ b/src/test-mp-equation.c
@@ -619,7 +619,9 @@ int
main (int argc, char **argv)
{
setlocale(LC_ALL, "C");
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
test_conversions();
test_equations();
diff --git a/src/test-mp.c b/src/test-mp.c
index a750f2a..2b976ac 100644
--- a/src/test-mp.c
+++ b/src/test-mp.c
@@ -229,7 +229,9 @@ int
main (int argc, char **argv)
{
setlocale(LC_ALL, "C");
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
test_mp();
test_numbers();