filter G_GNUC before PRIVATE so $ is still true.
authorManish Singh <yosh@gimp.org>
Sun, 28 Nov 2004 21:22:05 +0000 (21:22 +0000)
committerManish Singh <yosh@src.gnome.org>
Sun, 28 Nov 2004 21:22:05 +0000 (21:22 +0000)
Sun Nov 28 13:21:12 2004  Manish Singh  <yosh@gimp.org>

        * abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.

gobject/ChangeLog
gobject/abicheck.sh

index c0944777d4f2df7d559ab2e99eaeac664e2e5109..7609bf869331f2770ebb0085b76745afce751778 100644 (file)
@@ -1,3 +1,7 @@
+Sun Nov 28 13:21:12 2004  Manish Singh  <yosh@gimp.org>
+
+       * abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
 Sun Nov 28 01:37:54 2004    <timj@birnet.org>
 
        * gsignal.c: applied patch by sven@gimp.org (#153727) to reduce
index f4ea4574a23c990b3d472b9ab11a0f6dfe7fbc9e..3875e7f3bc6a365a1cb39e1408457e7dfb55357b 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
+cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | 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