+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
+2002-03-12 Alexander Larsson <alla@lysator.liu.se>
+
+ * glib/gconvert.c:
+ Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
+ use instead. Add g_convert_init() that calls have_broken_filenames()
+
+ * gthread/gthread-impl.c:
+ Have g_thread_init call g_convert_init.
+
2002-03-11 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strtod):
#endif /* !G_PLATFORM_WIN32 */
}
+#ifndef G_PLATFORM_WIN32
+static gboolean
+have_broken_filenames (void)
+{
+ static gboolean initialized = FALSE;
+ static gboolean broken;
+
+ if (initialized)
+ return broken;
+
+ broken = (getenv ("G_BROKEN_FILENAMES") != NULL);
+
+ initialized = TRUE;
+
+ return broken;
+}
+#endif /* !G_PLATFORM_WIN32 */
+
+/* This is called from g_thread_init(). It's used to
+ * initialize some static data in a threadsafe way.
+ */
+void
+g_convert_init (void)
+{
+#ifndef G_PLATFORM_WIN32
+ (void)have_broken_filenames ();
+#endif /* !G_PLATFORM_WIN32 */
+}
+
/**
* g_filename_to_utf8:
* @opsysstring: a string in the encoding for filenames
error);
#else /* !G_PLATFORM_WIN32 */
- if (getenv ("G_BROKEN_FILENAMES"))
+ if (have_broken_filenames ())
return g_locale_to_utf8 (opsysstring, len,
bytes_read, bytes_written,
error);
bytes_read, bytes_written,
error);
#else /* !G_PLATFORM_WIN32 */
- if (getenv ("G_BROKEN_FILENAMES"))
+ if (have_broken_filenames ())
return g_locale_from_utf8 (utf8string, len,
bytes_read, bytes_written,
error);
void g_mutex_init (void);
void g_mem_init (void);
void g_messages_init (void);
+void g_convert_init (void);
#define G_MUTEX_DEBUG_INFO(mutex) (*((gpointer*)(((char*)mutex)+G_MUTEX_SIZE)))
g_mutex_init ();
g_mem_init ();
g_messages_init ();
+ g_convert_init ();
/* now we can set g_threads_got_initialized and thus enable
* all the thread functions