configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 330f5786b17cf3dd3a7404d54335020fb90dfc39 Author: Khaled Hosny <kha...@aliftype.com> AuthorDate: Sat Oct 1 17:14:02 2022 +0200 Commit: خالد حسني <kha...@aliftype.com> CommitDate: Sat Oct 1 18:14:30 2022 +0200
Allow building libeot on any platform It is not enabled by default, so I don’t see the point of silently over-riding configure option. Change-Id: Ib2c14b2ce7519775ed5a3365c34ade3c96b66532 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140843 Tested-by: Jenkins Reviewed-by: خالد حسني <kha...@aliftype.com> diff --git a/configure.ac b/configure.ac index 112e180d91a4..1f162edaafbf 100644 --- a/configure.ac +++ b/configure.ac @@ -9577,7 +9577,7 @@ dnl =================================================================== libo_CHECK_SYSTEM_MODULE([xmlsec], [XMLSEC], [xmlsec1-nss >= 1.2.28]) AC_MSG_CHECKING([whether to enable Embedded OpenType support]) -if test "$_os" != "WINNT" -a "$_os" != "Darwin" -a "$enable_eot" = "yes"; then +if test "$enable_eot" = "yes"; then ENABLE_EOT="TRUE" AC_DEFINE([ENABLE_EOT]) AC_MSG_RESULT([yes])