summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-126
-rw-r--r--ChangeLog.pre-2-86
-rwxr-xr-xglib/abicheck.sh2
-rwxr-xr-xgobject/abicheck.sh2
6 files changed, 26 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 999078cda..d94f01f37 100644
--- 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
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 999078cda..d94f01f37 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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
diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12
index 999078cda..d94f01f37 100644
--- a/ChangeLog.pre-2-12
+++ b/ChangeLog.pre-2-12
@@ -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
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 999078cda..d94f01f37 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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
diff --git a/glib/abicheck.sh b/glib/abicheck.sh
index 9f5221801..c814ba154 100755
--- a/glib/abicheck.sh
+++ b/glib/abicheck.sh
@@ -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
diff --git a/gobject/abicheck.sh b/gobject/abicheck.sh
index 0e1d4e6cd..74391cdea 100755
--- a/gobject/abicheck.sh
+++ b/gobject/abicheck.sh
@@ -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