filter out G_GNUC stuff when doing the compare.
authorManish Singh <yosh@gimp.org>
Thu, 25 Nov 2004 22:10:25 +0000 (22:10 +0000)
committerManish Singh <yosh@src.gnome.org>
Thu, 25 Nov 2004 22:10:25 +0000 (22:10 +0000)
Thu Nov 25 14:09:41 2004  Manish Singh  <yosh@gimp.org>

        * abicheck.sh: filter out G_GNUC stuff when doing the compare.

gobject/ChangeLog
gobject/abicheck.sh

index 29586bec88fed70ed2af56d696b8f0c5dab2fb75..4fd8b60c7a5edff27ebeada404c2986318b1bacb 100644 (file)
@@ -1,3 +1,7 @@
+Thu Nov 25 14:09:41 2004  Manish Singh  <yosh@gimp.org>
+
+       * abicheck.sh: filter out G_GNUC stuff when doing the compare.
+
 2004-11-23  Matthias Clasen  <mclasen@redhat.com>
 
        * gobject.symbols: Typo fix.
index 8a53bec18ed890cf5333caafb2b509b224c64dad..f4ea4574a23c990b3d472b9ab11a0f6dfe7fbc9e 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' | sort > expected-abi
+cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | 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