summaryrefslogtreecommitdiff
path: root/lib/tevent/script/abi_checks_gcc.sh
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-05-29 18:56:56 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-05-30 04:15:11 +0200
commit8ddd2a869b76b6fc298f1d08dbf496b3431ddce4 (patch)
tree660d62530f611f9f7c08cf21fc72574f8a865d28 /lib/tevent/script/abi_checks_gcc.sh
parentc8877d8f63ea367401fae4377cd28ee91b58d9e3 (diff)
downloadsamba-8ddd2a869b76b6fc298f1d08dbf496b3431ddce4.tar.gz
samba-8ddd2a869b76b6fc298f1d08dbf496b3431ddce4.tar.bz2
samba-8ddd2a869b76b6fc298f1d08dbf496b3431ddce4.zip
build: Remove unused release scripts for tevent
These now use waf dist, and the script/librelease.sh script as a wrapper. The mksyms.sh call in the source3/Makefile uses the copy in source3/script Andrew Bartlett
Diffstat (limited to 'lib/tevent/script/abi_checks_gcc.sh')
-rwxr-xr-xlib/tevent/script/abi_checks_gcc.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/tevent/script/abi_checks_gcc.sh b/lib/tevent/script/abi_checks_gcc.sh
deleted file mode 100755
index 95182097d5..0000000000
--- a/lib/tevent/script/abi_checks_gcc.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-make clean
-
-mkdir abi
-ABI_CHECKS="-aux-info abi/\$@.X"
-make ABI_CHECK="$ABI_CHECKS" CC="/usr/bin/gcc"
-
-for i in abi/*.X; do cat $i | grep 'tevent\.h'; done | sort | uniq | awk -F "extern " '{ print $2 }' | sort> abi/signatures
-
-cat > abi/exports << EOF
-{
- global:
-EOF
-cat abi/signatures | awk -F '(' '{ print $1 }' | awk -F ' ' '{ print " "$NF";" }' | tr -d '*' | sort >> abi/exports
-cat >> abi/exports << EOF
-
- local: *;
-};
-EOF
-
-rm -fr abi/*.X
-
-diff -u tevent.signatures abi/signatures
-if [ "$?" != "0" ]; then
- echo "WARNING: Possible ABI Change!!"
-fi
-
-diff -u tevent.exports abi/exports
-if [ "$?" != "0" ]; then
- echo "WARNING: Export file may be outdated!!"
-fi