Fix abi checks for ia64.
authorMatthias Clasen <matthiasc@src.gnome.org>
Mon, 15 Aug 2005 05:00:57 +0000 (05:00 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 15 Aug 2005 05:00:57 +0000 (05:00 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/abicheck.sh
gobject/abicheck.sh

index 999078c..d94f01f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/abicheck.sh, gobject/abicheck.sh: Make the 
+       check work on ia64 too, where some symbols ended up 
+       in yet another section.
+
 2005-08-12  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 999078c..d94f01f 100644 (file)
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/abicheck.sh, gobject/abicheck.sh: Make the 
+       check work on ia64 too, where some symbols ended up 
+       in yet another section.
+
 2005-08-12  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 999078c..d94f01f 100644 (file)
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/abicheck.sh, gobject/abicheck.sh: Make the 
+       check work on ia64 too, where some symbols ended up 
+       in yet another section.
+
 2005-08-12  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 999078c..d94f01f 100644 (file)
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/abicheck.sh, gobject/abicheck.sh: Make the 
+       check work on ia64 too, where some symbols ended up 
+       in yet another section.
+
 2005-08-12  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 9f52218..c814ba1 100755 (executable)
@@ -8,6 +8,6 @@ INCLUDES="$INCLUDES -include glibconfig.cpp"
 cpp -P -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DG_STDIO_NO_WRAP_ON_UNIX -DALL_FILES $INCLUDES "${srcdir:-.}/glib.symbols" | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
 rm glibconfig.cpp
 
-nm -D .libs/libglib-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libglib-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
 
 diff -u expected-abi actual-abi && rm expected-abi actual-abi
index 0e1d4e6..74391cd 100755 (executable)
@@ -8,6 +8,6 @@ INCLUDES="$INCLUDES -include glibconfig.cpp"
 cpp -DINCLUDE_VARIABLES -P $INCLUDES -DALL_FILES ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
 rm glibconfig.cpp
 
-nm -D .libs/libgobject-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgobject-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
 
 diff -u expected-abi actual-abi && rm expected-abi actual-abi