summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-01-04 23:40:41 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-01-04 23:40:41 -0500
commit5c1502479ae87521899c545c404966a965894fb8 (patch)
tree8bba7d12169f6b9febda7e38155d1823eed27494 /gdk
parentc4f0bbb13087da69de371b23a3dcfa09003399e4 (diff)
downloadgtk+-5c1502479ae87521899c545c404966a965894fb8.tar.gz
Fix gdk/abicheck.sh temporarily
The best fix for now is to just hardcode the X11 backend again
Diffstat (limited to 'gdk')
-rwxr-xr-xgdk/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/abicheck.sh b/gdk/abicheck.sh
index 14e9e736ea..2bfefafcfa 100755
--- a/gdk/abicheck.sh
+++ b/gdk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P -DGDK_ENABLE_BROKEN -include ../config.h ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
+cpp -P -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
nm -D -g --defined-only .libs/libgdk-3.0.so | cut -d ' ' -f 3 | egrep -v '^(__bss_start|_edata|_end)' | sort > actual-abi
diff -u expected-abi actual-abi && rm -f expected-abi actual-abi