forked from AuroraMiddleware/gtk
f45a35921a
2006-09-10 Matthias Clasen <mclasen@redhat.com> * Commit a patch by Behdad to fix typos, omissions and other errors in the symbol aliasing, and add checks for local PLT entries. (#354687, Behdad Esfahbod)
13 lines
363 B
Bash
Executable File
13 lines
363 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if test "x$gtk_all_c_sources" = x; then
|
|
echo gtk_all_c_sources variable not defined
|
|
exit 1
|
|
fi
|
|
|
|
grep 'IN_FILE' gtk.symbols | sed 's/.*(//;s/).*//' | grep __ | sort -u > expected-files
|
|
grep '^ *# *define __' $gtk_all_c_sources | sed 's/.*define //;s/ *$//' | sort > actual-files
|
|
|
|
diff expected-files actual-files && rm -f expected-files actual-files
|
|
|