diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-12-30 10:48:32 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-12-30 15:30:35 +0100 |
commit | 88c511981e31c73dced95b5dc3c200fdf2a4e932 (patch) | |
tree | 5db2be67d9416df513a9672e5a1f7b41ba82a1e3 /vcl/source/gdi | |
parent | 7886b6a56a51cb699fb2a18d8a8dff0e224bdfb5 (diff) |
Fix uppercase EOT => LIBEOT usage
Originally I had these hunks included, but somehow came to think
that using EOT instead of LIBEOT would work... well I'm obviously
wrong, so re-add the uppercase LIBEOT usage.
Still uses the lowercase "eot", because of the autoconf switches.
Regression from commit ce54ba96f38b4af3aab1a7064078ee406eb021c6
("Use libo_CHECK_SYSTEM_MODULE for eot").
Change-Id: Id3e1c97cdb67621f0c0cfd67b78836f62df0e8e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127737
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r-- | vcl/source/gdi/embeddedfontshelper.cxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/embeddedfontshelper.cxx b/vcl/source/gdi/embeddedfontshelper.cxx index 34d227e5f5b2..f21e73498ebd 100644 --- a/vcl/source/gdi/embeddedfontshelper.cxx +++ b/vcl/source/gdi/embeddedfontshelper.cxx @@ -26,7 +26,7 @@ #include <sft.hxx> -#if ENABLE_EOT +#if ENABLE_LIBEOT extern "C" { namespace libeot @@ -108,7 +108,7 @@ bool EmbeddedFontsHelper::addEmbeddedFont( const uno::Reference< io::XInputStrea break; } bool sufficientFontRights(false); -#if ENABLE_EOT +#if ENABLE_LIBEOT if( eot ) { unsigned uncompressedFontSize = 0; diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index e89b1f65949f..53552f4ec4c8 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -85,7 +85,7 @@ #include <config_eot.h> -#if ENABLE_EOT +#if ENABLE_LIBEOT #include <libeot/libeot.h> #endif |