diff options
author | Tor Lillqvist <tml@collabora.com> | 2021-08-23 18:06:51 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2021-08-23 18:43:57 +0200 |
commit | e2a54acaf123c61e3be291f8c84a88effae880a1 (patch) | |
tree | a5339cd98d4ece538332abef7ed5800829fa4693 /vcl/quartz | |
parent | 238951d0c539d1e294a1a12f2cf7aa806af8e116 (diff) |
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 <tml@collabora.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdi.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
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)); |