diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-08-07 13:47:25 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-08-07 13:47:25 +0000 |
commit | f13dc6d43cf1600cb134e9812f5826f6552474ff (patch) | |
tree | e72800109e1f6f853c467ddef3e866544b0d6998 /gdk-pixbuf | |
parent | d40699c1b5c77ec8ed3cd8233cfbb8eaea4bfa9f (diff) | |
download | gdk-pixbuf-f13dc6d43cf1600cb134e9812f5826f6552474ff.tar.gz |
Tighten up ABI checks a bit
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 4 | ||||
-rwxr-xr-x | gdk-pixbuf/abicheck.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index e4f007871..438a8f70a 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,7 @@ +2005-08-07 Matthias Clasen <mclasen@redhat.com> + + * abicheck.sh: Also check exported variables. + 2005-08-02 Matthias Clasen <mclasen@redhat.com> * === Released 2.7.5 === diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh index 989c5e4f2..aedfddf8c 100755 --- a/gdk-pixbuf/abicheck.sh +++ b/gdk-pixbuf/abicheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -cpp -P -DALL_FILES ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi -nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi +cpp -DINCLUDE_VARIABLES -P -DALL_FILES ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi +nm -D .libs/libgdk_pixbuf-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi diff -u expected-abi actual-abi && rm expected-abi actual-abi |