Re-enable CppunitTest_emfio_wmf for --enable-mergelibs
It had originally been disabled bya037f6338c
"Disable CppunitTest_vcl_wmf_test under --enable-merglibs for now" because "the problems caused by that test having the vcl objects linked into both the test's library and the mergedlib (which the test's library links against) are just not manageable", which is no longer an issue at least since29cdfa3fc3
"no need to statically link against the emfio library in the tests". But the test code apparently uses WinMtfFontStyle, which can thus no longer be hidden under --enable-mergelibs. Change-Id: Ie807b19f0cb44408c69d03faca01fabe88239ca0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148493 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
parent
db73d73c40
commit
f194f9dba0
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ $(eval $(call gb_Module_add_targets,emfio,\
|
|||
|
||||
$(eval $(call gb_Module_add_check_targets,emfio,\
|
||||
CppunitTest_emfio_emf \
|
||||
$(if $(MERGELIBS),,CppunitTest_emfio_wmf) \
|
||||
CppunitTest_emfio_wmf \
|
||||
))
|
||||
|
||||
# vim: set noet ts=4 sw=4:
|
||||
|
|
|
@ -387,7 +387,7 @@ namespace emfio
|
|||
GDIObj & operator =(GDIObj const &) = default;
|
||||
};
|
||||
|
||||
struct UNLESS_MERGELIBS(EMFIO_DLLPUBLIC) WinMtfFontStyle final : GDIObj
|
||||
struct EMFIO_DLLPUBLIC WinMtfFontStyle final : GDIObj
|
||||
{
|
||||
vcl::Font aFont;
|
||||
|
||||
|
|
Loading…
Reference in a new issue