vcl/Library_vcl.mk | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 50582d73c61165f17c38ce28f216739a3a34664b
Author: Rene Engelhard <[email protected]>
AuthorDate: Wed Nov 16 21:58:05 2022 +0100
Commit: Caolán McNamara <[email protected]>
CommitDate: Thu Nov 17 17:55:50 2022 +0100
fix system-libfixmath build without mergelibs
missing -llibfixmath do it doesn't get it while it seems to get it via
tools/libtl (which has it) in the mergelibs case
Change-Id: Idb6a0079a63ffb1cff0fc1cafb2c11dfa3bec5b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142817
Tested-by: René Engelhard <[email protected]>
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <[email protected]>
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index d0087d682d22..cff520ccb03f 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -570,6 +570,12 @@ vcl_headless_freetype_code=\
vcl/unx/generic/printer/jobdata \
vcl/unx/generic/printer/ppdparser \
+ifeq ($(SYSTEM_LIBFIXMATH),TRUE)
+$(eval $(call gb_Library_add_libs,vcl,\
+ -llibfixmath \
+))
+endif
+
ifeq ($(USING_X11),TRUE)
$(eval $(call gb_Library_add_exception_objects,vcl,\
vcl/unx/generic/window/screensaverinhibitor \