lok: intercept the UNO command ".uno:ThesaurusDialog"
[LibreOffice.git] / bin / verify-custom-widgets-libs
blob7fad02f178c27e62a512dcd93bc9560ddb51458e
1 #!/bin/sh
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # Run this from the source root dir of a completed build to
10 # verify that all customwidgets used in our .ui files have
11 # their factory method in the library they claim to be in
13 # Under Linux dlsym will search other locations and find
14 # them if they exist elsewhere, but not under windows, so
15 # its easy to put the wrong lib name in if developing
16 # under Linux
18 ret=0
19 FOO=`git grep -h -r lo- */uiconfig | sed -e "s/<object class=\"//g" | sed -e "s/\".*$//"| sed 's/^[ \t]*//;s/[ \t]*$//'|sort|uniq`
20 for foo in $FOO; do
21 lib=$(echo $foo | cut -f1 -d-)
22 symbol=$(echo $foo | cut -f2 -d-)
23 nm -D instdir/program/lib$lib.so | grep make$symbol > /dev/null
24 if [ $? != 0 ]; then
25 echo "$foo exists in a .ui file, but make$symbol is missing from lib$lib.so, Windows will fail to find the symbol and crash"
26 echo " typically make$symbol is in a different library and $foo should have the prefix of that library instead"
27 ret=1
29 done
30 exit $ret