diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-10-26 16:41:43 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-10-26 16:41:43 +0000 |
commit | 45698f6ecfdebf7c16c89c86eb48b7b4cc230830 (patch) | |
tree | a2c2850058a6304eb3630837a0097528f609b37a /gobject | |
parent | 18de63628958aa97e883ef2b16b98234dafaf8a9 (diff) |
Add new symbols.
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.
Diffstat (limited to 'gobject')
-rw-r--r-- | gobject/ChangeLog | 5 | ||||
-rwxr-xr-x | gobject/abicheck.sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog index baaa21db2..795675507 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -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 diff --git a/gobject/abicheck.sh b/gobject/abicheck.sh index 64e39736e..f560949e7 100755 --- a/gobject/abicheck.sh +++ b/gobject/abicheck.sh @@ -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 |