Add new symbols.
authorMatthias Clasen <mclasen@redhat.com>
Tue, 26 Oct 2004 16:41:43 +0000 (16:41 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 26 Oct 2004 16:41:43 +0000 (16:41 +0000)
2004-10-26  Matthias Clasen  <mclasen@redhat.com>

* glib/glib.symbols: Add new symbols.

* abicheck.sh: Don't include symbols which are just in the
symbols list for .defs file compatibility.

gobject/ChangeLog
gobject/abicheck.sh

index baaa21d..7956755 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * abicheck.sh: Don't include symbols which are just in the 
+       symbols list for .defs file compatibility.
+
 2004-10-23  Matthias Clasen  <mclasen@redhat.com>
 
        * gtype.h (GTypeInterfaceCheckFunc): Rename first parameter to 
index 64e3973..f560949 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | sort > expected-abi
+cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | 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