]> Pileus Git - ~andy/gtk/commitdiff
filter out PRIVATE.
authorManish Singh <yosh@gimp.org>
Fri, 10 Dec 2004 21:58:05 +0000 (21:58 +0000)
committerManish Singh <yosh@src.gnome.org>
Fri, 10 Dec 2004 21:58:05 +0000 (21:58 +0000)
Fri Dec 10 13:57:44 2004  Manish Singh  <yosh@gimp.org>

        * abicheck.sh: filter out PRIVATE.

gdk-pixbuf/ChangeLog
gdk-pixbuf/abicheck.sh

index f670c4e5c0b96032fcda9f61badf81bf45468538..42b379b4d457572a52da8d14cfa3bc086fabf061 100644 (file)
@@ -1,3 +1,7 @@
+Fri Dec 10 13:57:44 2004  Manish Singh  <yosh@gimp.org>
+
+       * abicheck.sh: filter out PRIVATE.
+
 2004-12-05  Tor Lillqvist  <tml@iki.fi>
 
        * gdk-pixbuf-animation.c
index 3e39f4da50cedc6155612941458324c0a6f34c8e..87b59451f8723f11e410654b3b2ada380f9ca23f 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-abi
+cpp -P ${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
 diff -u expected-abi actual-abi && rm expected-abi actual-abi