summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-14 04:46:50 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-14 04:46:50 +0000
commit0cb610fbee8b8bcdd9a1e12d4d0cb573a2742187 (patch)
tree22401f72241467884dea5790a1feb10b3792855c
parentd66efae8e06efb6854ea30390f82b73c35df931a (diff)
downloadgdk-pixbuf-0cb610fbee8b8bcdd9a1e12d4d0cb573a2742187.tar.gz
Make this work on more platforms.
2006-01-13 Matthias Clasen <mclasen@redhat.com> * */abicheck.sh: Make this work on more platforms.
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-104
-rwxr-xr-xgdk-pixbuf/abicheck.sh2
-rwxr-xr-xgdk/abicheck.sh2
-rwxr-xr-xgtk/abicheck.sh2
5 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 420cd7c9f..6506f6eca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-13 Matthias Clasen <mclasen@redhat.com>
+
+ * */abicheck.sh: Make this work on more platforms.
+
2006-01-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextview.c (gtk_text_view_commit_text)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 420cd7c9f..6506f6eca 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,7 @@
+2006-01-13 Matthias Clasen <mclasen@redhat.com>
+
+ * */abicheck.sh: Make this work on more platforms.
+
2006-01-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextview.c (gtk_text_view_commit_text)
diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh
index aedfddf8c..2d2a8d19f 100755
--- a/gdk-pixbuf/abicheck.sh
+++ b/gdk-pixbuf/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -DINCLUDE_VARIABLES -P -DALL_FILES ${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 " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgdk_pixbuf-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi
diff --git a/gdk/abicheck.sh b/gdk/abicheck.sh
index 8375923e4..6832afd73 100755
--- a/gdk/abicheck.sh
+++ b/gdk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -DINCLUDE_VARIABLES -P -DALL_FILES -DGDK_ENABLE_BROKEN -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
-nm -D .libs/libgdk-x11-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgdk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi
diff --git a/gtk/abicheck.sh b/gtk/abicheck.sh
index bdd727d43..b1c27f345 100755
--- a/gtk/abicheck.sh
+++ b/gtk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -DINCLUDE_VARIABLES -P -DG_OS_UNIX -DGTK_WINDOWING_X11 -DALL_FILES ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE//' | sort > expected-abi
-nm -D .libs/libgtk-x11-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgtk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi