aa0b9d13b5
because glade catalogs don't allow : in widgetnames which blocks making a catalog for our custom widgets Change-Id: I3d590ce7451264b49fa5a82a752dac44e47bbd81
29 lines
1.1 KiB
Bash
Executable file
29 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Run this from the source root dir of a completed build to
|
|
# verify that all customwidgets used in our .ui files have
|
|
# their factory method in the library they claim to be in
|
|
#
|
|
# Under Linux dlsym will search other locations and find
|
|
# them if they exist elsewhere, but not under windows, so
|
|
# its easy to put the wrong lib name in if developing
|
|
# under Linux
|
|
|
|
FOO=`grep -h -r lo- */uiconfig | sed -e "s/<object class=\"//g" | sed -e "s/\".*$//"| sed 's/^[ \t]*//;s/[ \t]*$//'|sort|uniq`
|
|
for foo in $FOO; do
|
|
lib=$(echo $foo | cut -f1 -d-)
|
|
symbol=$(echo $foo | cut -f2 -d-)
|
|
echo testing if lib$lib.so contains make$symbol
|
|
nm -D solver/unxlng*/lib/lib$lib.so | grep make$symbol > /dev/null
|
|
if [ $? != 0 ]; then
|
|
echo "MISSING. Windows will crash"
|
|
else
|
|
echo "OK";
|
|
fi
|
|
done
|