summaryrefslogtreecommitdiff
path: root/distro-configs/LibreOfficeiOS.conf
AgeCommit message (Collapse)AuthorFilesLines
2018-05-23remove Linux ("UNX") systray "Quickstarter"Rene Engelhard1-1/+0
Change-Id: Ie0e8b8b7ad59ee640d6b195dfae1a7cf745056fd Reviewed-on: https://gerrit.libreoffice.org/54543 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
2018-01-04iOS disable gpgmejan Iversen1-2/+10
Disable gpgme called for passing parameters to configure, when called internally (to generate config_build etc). Update the distro-conf, with info on the different supported models Change-Id: I884c8638bf7b1c9fbc8ea4bdaa4dfca019857f45
2017-10-11iOS, actived more 3rd librariesjan Iversen1-2/+0
configure.ac compete with autogen.input, meaning a lot of enable/disable are set set in configure.ac and cannot be changed. Change-Id: I9e2b42b676fef67af6df81288214428f45fc4844
2017-10-11iOS, support for more 3rd party librariesjan Iversen1-8/+0
Change-Id: I56bd134bc854578f52a56256e164a3279a0c74b1
2017-09-23iOS, update distrojan Iversen1-2/+44
Added copy of autogen.input that works for arm64 and simulator. Some of the disabled libraries might work, that is future work. Change-Id: I7df3491872a1f13110dd49655fdc0a4ede3bfa28
2017-02-11Pdfium does not build for iOSTor Lillqvist1-0/+1
It uses Carbon, eek, which was marked as deprecated for OS X already back in 2012, and never has been available for iOS. Change-Id: Icfc57dff1ae01272a347a050303139f4f86e6fec
2013-05-01Make configury work as well as possible for iOS without optionsTor Lillqvist1-24/+0
Change-Id: If28fbe59f55626aeca05fa93446a0e5034ea2b91
2013-04-24Add --disable-neonTor Lillqvist1-0/+1
Change-Id: Icf9d75e699e8a430ce0d2a305e1b696d8023466b
2013-04-24Add --enable-mpl-subset --disable-lotuswordproTor Lillqvist1-0/+2
Change-Id: I648e5c23704125e939eceda9ac29217f1c63cd47
2013-03-23There is no --enable-ext-report-builder any moreAndras Timar1-1/+0
Change-Id: I447a2cfd0e90e61c4a3015d9ef58a78ae86eb874
2013-01-21No use for help or myspell-dicts for Android or iOSTor Lillqvist1-2/+0
2013-01-21default to --without-help and --without-myspell-dictsNorbert Thiebaud1-0/+2
Updated the distro-configs so that the default change does not impact build based on distro profile The intent is that with this change of defaults the build does only rely on core and does not need any submodules. Making a initial build simpler for new dev, since they won't be exposed to submodules unless they really need them. Change-Id: I446e912d607ce7358fd11f54a3de025dc3f25144 Reviewed-on: https://gerrit.libreoffice.org/1791 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2012-12-26Drop obsolete optionsTor Lillqvist1-2/+0
2012-12-17Remove --with-stlport from LO 4.0Stephan Bergmann1-1/+0
The STLport was only built for the benefit of old extensions on platforms that once used it themselves (Linux x86, Solaris x86 and SPARC, Windows). We deliberately break such old extensions for LO 4.0 by no longer shipping that backwards-compatiblity cludge. Keeps STLport listed in readlicense_oo/ because of o3tl/inc/o3tl/compat_functionality.hxx. Also removes GXX_INCLUDE_PATH, as that was only used by STLport (if at all?). Removes a spurious #define MOVEFILE_REPLACE_EXISTING 0x01 from l10ntools/inc/helpmerge.hxx that was once added with 854812584862d0609b695682d2bfea2667d75c00 "INTEGRATION: CWS extensionl10nfix01 (1.11.6); FILE MERGED: 2008/06/26 13:56:03 ihi 1.11.6.1: #i90987# windows rename -> MoveFileEx" but now starts to cause trouble on Windows. Also disables warning C4005 about redefinition of WB_LEFT/RIGHT macros (defined in both tools/wintypes.hxx and the Windows API) in a number of places that include windows.h -- however the old STLport caused those warnings to not show. Change-Id: Ie138a219fbbc86fb5aaa7ea0b88cf349935d9829
2012-11-29Isolate PDF Import so it can be made optionally installableStephan Bergmann1-1/+0
...which can be attractive for installation sets that use --with-system-poppler but do not want the LO core package to depend on a poppler package. See the comment at the top of scp2/source/ooo/module_pdfimport.scp for details. The build-time --disable-pdfimport configure switch is gone, PDF Import is built unconditionally for all platforms but Android and iOS now. (The ENABLE_PDFIMPORT variable now uses TRUE/FALSE rather than YES/NO, to increase consistency across those variables.) Change-Id: I6509d0b2e770b276cd54540408fb1ec5a7dda058
2012-11-24Turn PDF import from bundled extension to plain codeStephan Bergmann1-2/+1
No need for dirty hacks linking in basegfx objects statically any more. To avoid unnecessary confusion between the newly plain code and any instance of the old extension still installed (per-user or shared), I renamed all relevant UNO implementation identifiers from com.sun.star.comp.documents.* to org.libreoffice.comp.documents.*. Also, existing installations of the extension are explicitly not migrated to new user profiles. The xpdfimport executable is now in program/, its xpdfimport_err.pdf in share/xpdfimport/. To simplify finding the _err.pdf from xpdfimport, its full pathname is now given as additional second argument to xpdfimport. To find xpdfimport executable from CppunitTest, CppunitTest creates a symlink from solver's unittest/installation/program to solver's bin, so that "$BRAND_BASE_DIR/program/xpdfimport" works there (as CppunitTest now sets BRAND_BASE_DIR to solver's unittest/installation). The sdext/source/pdfipmort/dialogs/ Basic stuff appeared to be unused (even though it was included in the .oxt) and has been removed. The --disable-ext-pdfimport configure switch is renamed to --disable-pdfimport. Having it still conditional requires some pdf_Portable_Document_Format vs. pdf_Portable_Document_Format_import foo in module filter. Change-Id: Iee58c2f6187142a418decc9ea3a5df10eb7e0523
2012-11-21Use --disable-cairo-canvas here, tooTor Lillqvist1-0/+1
Change-Id: I21ca700e16d41a0f8372bf997cdd7ae57e555c41
2012-08-14drop disable-xmlsec, it's core functionality, have to live with itCaolán McNamara1-1/+0
we basically need this functionality, the idea of it being optional isn't really logical anymore with nss split out from mozilla. for iOS and Android where they doesn't build yet spit out lame fixme nag warnings Change-Id: I4b16c62553b12d3dcd340a0b5c5a4cbd807c2f02
2012-08-09gstreamer: make gstreamer 1.0 and 0.10 dual compileMichael Meeks1-0/+1
Add fallback activation of an _OLD media component to the core. Compile both a 0.10 and 1.0 version of the gstreamer component Change-Id: I91f65d05391cb2d7e02f9cff18f96178a128705O1
2012-02-23Bin obsolete optionsTor Lillqvist1-3/+0
2012-01-24--disable-postgresql-sdbcTor Lillqvist1-0/+1
2012-01-18Surely we want --disable-vba for iOSTor Lillqvist1-0/+1
2011-11-11Add --disable-xmlsec for nowTor Lillqvist1-1/+1
2011-09-25Disable some extensions that apparently are enabled otherwiseTor Lillqvist1-0/+5
2011-08-23Presumably we want --without-afmsTor Lillqvist1-0/+1
2011-08-22Enable CUPS unconditionallyFrançois Tigeot1-1/+0
It doesn't make sense to try to use anything else to print on *nix systems these days
2011-08-02Add --disable-librsvgTor Lillqvist1-0/+1
2011-06-13Revert "Use separately built "system" OpenSSL for iOS"Tor Lillqvist1-1/+0
This reverts commit cd4784c4d7466027801736f13bf06b08f6beacf6.
2011-05-26Use separately built "system" OpenSSL for iOSTor Lillqvist1-0/+1
The configury in the bundled obsolete version of OpenSSL is just too horrible to even bother patching up to work for cross-compiling to iOS. There are several ways to build OpenSSL for iOS described on the net, let's just use one of them.
2011-05-15Don't claim to be official TDF, don't build stlportTor Lillqvist1-1/+1
2011-05-14Do even lessTor Lillqvist1-0/+2
2011-05-13Add distro-config file for iOSTor Lillqvist1-0/+21