office-gobmx/external/libnumbertext/Module_libnumbertext.mk
Tor Lillqvist c392ecfa73 Drop configurability of libnumbertext use
It was fairly pointless to be able to --disable-libnumbertext.
Besides, disabling it broke the ordinal page (etc) numbering feature:
"1st", "2nd", "3rd", etc showed up as "Ordinal-number 1",
"Ordinal-number 2", "Ordinal-number 3" etc.

Change-Id: I645169054a8fdc8dac89cd48b6c369fd61749467
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96119
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
2020-06-11 16:23:52 +02:00

28 lines
719 B
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# 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/.
#
$(eval $(call gb_Module_Module,libnumbertext))
$(eval $(call gb_Module_add_targets,libnumbertext,\
ExternalPackage_numbertext \
UnpackedTarball_libnumbertext \
))
ifeq ($(COM),MSC)
$(eval $(call gb_Module_add_targets,libnumbertext,\
StaticLibrary_libnumbertext \
))
else
$(eval $(call gb_Module_add_targets,libnumbertext,\
ExternalProject_libnumbertext \
))
endif
# vim: set noet sw=4 ts=4: