create-tags: Exuberant Ctags 5.8 lacks -D, try to detect that

Change-Id: I1abc60184e0e5b68c41f5a3517f0877889d8f43a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88195
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Michael Stahl <michael.stahl@cib.de>
This commit is contained in:
Michael Stahl 2020-02-07 14:01:38 +01:00 committed by Michael Stahl
parent 8d7b3398fc
commit cbfa11ab8f

View file

@ -11,8 +11,13 @@ ctags="ctags $@"
saloptions="-ISAL_DELETED_FUNCTION -ISAL_OVERRIDE -ISAL_FINAL"
omnicppoptions="--c++-kinds=+p --fields=+iaS --extra=+q"
if LC_ALL=C ${ctags} -D "foo=bar" --license 2>&1 >/dev/null | grep -q -- 'ctags: Unknown option: -D'; then
echo "note: your ctags does not support defining macros with -D"
no_defines=" "
fi
$ctags -h "+.hdl.hrc" --langmap=c:+.hrc.src,c++:+.hdl $saloptions $omnicppoptions \
-D "CPPUNIT_TEST_FIXTURE(TestClass, TestName)=class TestName : public TestClass {};" \
${no_defines:-"-D CPPUNIT_TEST_FIXTURE(TestClass, TestName)=class TestName : public TestClass {};"} \
--languages=-HTML,Java,JavaScript \
--langdef=UNOIDL \
--langmap=UNOIDL:.idl \