summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/abicheck.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-08-11 14:23:31 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-08-11 14:23:31 +0000
commitb5179eb287af908f5126a9faa69002530a030da2 (patch)
treebfdf1f2f0ccfb4467a3d98507932ed70bf62459d /gdk-pixbuf/abicheck.sh
parent0b393aef4e994040bd5b36093962cd4fecdb7a9e (diff)
downloadgdk-pixbuf-b5179eb287af908f5126a9faa69002530a030da2.tar.gz
underscore prefix the mmx implementations, in order to not export them.
2004-08-11 Matthias Clasen <mclasen@redhat.com> * pixops/pixops-internal.h: * pixops/pixops.c: * pixops/*.S: underscore prefix the mmx implementations, in order to not export them. * gdk-pixbuf.symbols: Remove the mmx pixops implementations. * abicheck.sh: No need to define INCLUDE_MMX_SYMBOLS any more.
Diffstat (limited to 'gdk-pixbuf/abicheck.sh')
-rwxr-xr-xgdk-pixbuf/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh
index 9363c889d..1c6309f33 100755
--- a/gdk-pixbuf/abicheck.sh
+++ b/gdk-pixbuf/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_MMX_SYMBOLS gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
+cpp -P -DINCLUDE_INTERNAL_SYMBOLS gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -c12- | grep "^\(gdk\|pixops\)_" | sort > actual-abi
diff -u expected-abi actual-abi