*** empty log message ***
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 2 Nov 2004 21:53:23 +0000 (21:53 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 2 Nov 2004 21:53:23 +0000 (21:53 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gconvert.c
glib/glib.symbols
gobject/ChangeLog
gobject/abicheck.sh

index 72d8949..c6ca487 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/glib.symbols: Add new functions.
+
+       * glib/gconvert.c: Fix doc comment for 
+       g_get_filename_charsets().
+
        * glib/gconvert.c (g_filename_display_name): New function to
        convert a filename to a UTF-8 string for display purposes.
        (g_get_filename_charsets): New function to return the 
index 72d8949..c6ca487 100644 (file)
@@ -1,5 +1,10 @@
 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/glib.symbols: Add new functions.
+
+       * glib/gconvert.c: Fix doc comment for 
+       g_get_filename_charsets().
+
        * glib/gconvert.c (g_filename_display_name): New function to
        convert a filename to a UTF-8 string for display purposes.
        (g_get_filename_charsets): New function to return the 
index 72d8949..c6ca487 100644 (file)
@@ -1,5 +1,10 @@
 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/glib.symbols: Add new functions.
+
+       * glib/gconvert.c: Fix doc comment for 
+       g_get_filename_charsets().
+
        * glib/gconvert.c (g_filename_display_name): New function to
        convert a filename to a UTF-8 string for display purposes.
        (g_get_filename_charsets): New function to return the 
index 72d8949..c6ca487 100644 (file)
@@ -1,5 +1,10 @@
 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/glib.symbols: Add new functions.
+
+       * glib/gconvert.c: Fix doc comment for 
+       g_get_filename_charsets().
+
        * glib/gconvert.c (g_filename_display_name): New function to
        convert a filename to a UTF-8 string for display purposes.
        (g_get_filename_charsets): New function to return the 
index 72d8949..c6ca487 100644 (file)
@@ -1,5 +1,10 @@
 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/glib.symbols: Add new functions.
+
+       * glib/gconvert.c: Fix doc comment for 
+       g_get_filename_charsets().
+
        * glib/gconvert.c (g_filename_display_name): New function to
        convert a filename to a UTF-8 string for display purposes.
        (g_get_filename_charsets): New function to return the 
index 9752ae2..c0f41bd 100644 (file)
@@ -1010,7 +1010,7 @@ filename_charset_cache_free (gpointer data)
   g_free (cache);
 }
 
-/*
+/**
  * g_get_filename_charsets:
  * @charsets: return location for the %NULL-terminated list of encoding names
  *
@@ -1155,7 +1155,7 @@ void
 _g_convert_thread_init (void)
 {
   const gchar **dummy;
-  (void) get_filename_charsets (&dummy);
+  (void) g_get_filename_charsets (&dummy);
 }
 
 /**
index fe47872..44c5295 100644 (file)
@@ -168,6 +168,7 @@ g_file_get_contents PRIVATE
 #ifdef G_OS_WIN32
 g_file_get_contents_utf8
 #endif
+g_filename_display_name
 g_filename_from_uri
 g_filename_from_utf8 PRIVATE
 #ifdef G_OS_WIN32
@@ -199,6 +200,7 @@ g_get_current_dir PRIVATE
 g_get_current_dir_utf8
 #endif
 g_get_current_time
+g_get_filename_charsets
 g_getenv
 g_get_home_dir PRIVATE
 #ifdef G_OS_WIN32
index fb04656..a086185 100644 (file)
@@ -4,6 +4,8 @@
 
 2004-10-27  Matthias Clasen  <mclasen@redhat.com>
 
+       * abicheck.sh: Strip Win32 specific defs file syntax.
+
        * Makefile.am (gobjectalias.h): Fix srcdir != builddir 
        builds.  (#156447, Thomas Fitzsimmons)
 
index f560949..8a53bec 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | sort > expected-abi
+cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' | sort > expected-abi
 nm -D .libs/libgobject-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
 diff -u expected-abi actual-abi && rm expected-abi actual-abi