+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
+2001-01-09 Tor Lillqvist <tml@iki.fi>
+
+ * gutils.c (g_basename, g_dirname): Don't warn about deprecation
+ on Win32. Code written for GLib 1.2 doesn't have much choice but
+ to use GLib >= 1.3 on Win32.
+
+ * glib.def: Update.
+
2001-01-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmem.c: Made g_profile_mutex a GMutex* instead of
EXPORTS
+ g_allocator_free
+ g_allocator_new
g_array_append_vals
g_array_free
g_array_insert_vals
g_array_remove_index_fast
g_array_set_size
g_array_sized_new
+ g_array_sort
+ g_array_sort_with_data
g_atexit
g_basename
g_bit_nth_lsf
g_byte_array_remove_index_fast
g_byte_array_set_size
g_byte_array_sized_new
+ g_byte_array_sort
+ g_byte_array_sort_with_data
g_cache_destroy
g_cache_insert
g_cache_key_foreach
g_ptr_array_remove_index_fast
g_ptr_array_set_size
g_ptr_array_sized_new
+ g_ptr_array_sort
+ g_ptr_array_sort_with_data
g_qsort_with_data
g_quark_from_static_string
g_quark_from_string
EXPORTS
+ g_allocator_free
+ g_allocator_new
g_array_append_vals
g_array_free
g_array_insert_vals
g_array_remove_index_fast
g_array_set_size
g_array_sized_new
+ g_array_sort
+ g_array_sort_with_data
g_atexit
g_basename
g_bit_nth_lsf
g_byte_array_remove_index_fast
g_byte_array_set_size
g_byte_array_sized_new
+ g_byte_array_sort
+ g_byte_array_sort_with_data
g_cache_destroy
g_cache_insert
g_cache_key_foreach
g_ptr_array_remove_index_fast
g_ptr_array_set_size
g_ptr_array_sized_new
+ g_ptr_array_sort
+ g_ptr_array_sort_with_data
g_qsort_with_data
g_quark_from_static_string
g_quark_from_string
g_basename (const gchar *file_name)
{
register gchar *base;
-#ifdef G_ENABLE_DEBUG
+#if defined(G_ENABLE_DEBUG) && !defined(G_OS_WIN32)
static gboolean first_call = TRUE;
if (first_call)
gchar*
g_dirname (const gchar *file_name)
{
-#ifdef G_ENABLE_DEBUG
+#if defined(G_ENABLE_DEBUG) && !defined(G_OS_WIN32)
static gboolean first_call = TRUE;
if (first_call)
g_basename (const gchar *file_name)
{
register gchar *base;
-#ifdef G_ENABLE_DEBUG
+#if defined(G_ENABLE_DEBUG) && !defined(G_OS_WIN32)
static gboolean first_call = TRUE;
if (first_call)
gchar*
g_dirname (const gchar *file_name)
{
-#ifdef G_ENABLE_DEBUG
+#if defined(G_ENABLE_DEBUG) && !defined(G_OS_WIN32)
static gboolean first_call = TRUE;
if (first_call)