From e2a54acaf123c61e3be291f8c84a88effae880a1 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 23 Aug 2021 18:06:51 +0300 Subject: Make compilation for iOS get a bit further Note that I did not try to refresh my memory of what anything of this actually *means*, I just did a couple of quick edits to get past compilation errors in vcl. The build now proceeds until "No rule to make target '/Volumes/TML13/lo/master-ios-debug/instdir_for_build/LibreOfficeDev.app/Contents/Frameworks/libgcc3_uno', needed by '/Volumes/TML13/lo/master-ios-debug/workdir_for_build/Executable/saxparser.run'." Change-Id: I42e2d60bf691f99631b2700e45921824144df2d7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120892 Tested-by: Tor Lillqvist Reviewed-by: Tor Lillqvist --- vcl/quartz/salgdi.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vcl/quartz') diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index 53b10ab9533c..1480c0fda6ab 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -200,6 +200,9 @@ AquaSalGraphics::AquaSalGraphics() #if HAVE_FEATURE_SKIA if(SkiaHelper::isVCLSkiaEnabled()) mpBackend.reset(new AquaSkiaSalGraphicsImpl(*this, maShared)); +#else + if(false) + ; #endif else mpBackend.reset(new AquaGraphicsBackend(maShared)); -- cgit