summaryrefslogtreecommitdiff
path: root/external/libvisio
AgeCommit message (Collapse)AuthorFilesLines
2017-11-02ICU_UCHAR_TYPE is not needed for C++11 projectsDavid Tardon1-1/+1
Change-Id: I089af1a67044ab9cfd767e767a15d1a66014ce2f Reviewed-on: https://gerrit.libreoffice.org/44178 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
2017-10-28libvisio: pass optimization flags to configureDavid Tardon1-1/+2
Change-Id: I9275562fd3debaa0a53c0ed3e58974a5b5372f50 Reviewed-on: https://gerrit.libreoffice.org/44004 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2017-10-23upload libvisio 0.1.6David Tardon4-9/+42
Change-Id: I7864603e47e9f9337323ff4eed4e08f20bf5a756 Reviewed-on: https://gerrit.libreoffice.org/43703 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
2017-10-04use the new gbuild way to update config.*David Tardon2-24/+2
Change-Id: I43805ac8c3d5c1b65519da02c3cc50fdb9729ea6 Reviewed-on: https://gerrit.libreoffice.org/42941 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
2017-06-13iOS patch libvisiojan Iversen2-0/+24
Support for arm64 Change-Id: Ife38b174377ad79fb2364f31033416145a19a9cd
2017-04-26Upgrade to ICU 59.1Eike Rathke1-1/+1
Also regenerated all patches using make icu.genpatch (hence the .1 suffix that indicates the path level) as some hunks did not apply anyway and all now have the correct offset. Using genpatch may have the future benefit to yield smaller diffs between different versions of patches. Also prefixed all patch names with icu4c- for a cleaner listing. New patches introduced are prefixed with icu4c-59-... Change-Id: Ia83754b0823839887fce1a1d4ed04f8375b113c2 Reviewed-on: https://gerrit.libreoffice.org/36809 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-02-23add upstream URL to READMEsDavid Tardon1-1/+0
Change-Id: I9cde5f94c81c59ff99b8f5af9765b94b6f57184a
2017-02-23update upstream linkDavid Tardon1-1/+1
Change-Id: I1ef0e9079c7af6eddae3e3dae11ca8c3899fd59e
2016-05-30configure: set BOOST_CPPFLAGS also in --without-system-boost caseMichael Stahl1-1/+1
Simplify the makefiles. Change-Id: Ia695961e936e4a1ffdaff73eb56adc3c3905ed0c
2015-12-27external/libvisio: Avoid undefined behaviorStephan Bergmann1-0/+9
Change-Id: Ia86ebe7cd48de3f42dd95a11be7926f1e83d9113
2015-12-25this is not needed anymoreDavid Tardon1-2/+1
Change-Id: I77ca146b81953c9694497e360660c8161f5e56bf
2015-12-24external/libvisio: Avoid undefined behaviorStephan Bergmann2-0/+14
Change-Id: I454cf3b102986f2e3c1905f5fe0e1b2bb427828e
2015-12-23Upload libvisio 0.1.4Fridrich Štrba2-19/+0
Change-Id: Ia4cb506a95a150b8106187719e9104760409dea6
2015-11-12Generalize COM_GCC_IS_CLANG -> COM_IS_CLANGStephan Bergmann1-1/+1
...in anticipation of building with clang-cl.exe on Windows Change-Id: I1d723c9d3b5ca8a2bc6b27ef0189a7b053581398 Reviewed-on: https://gerrit.libreoffice.org/19928 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2015-09-17blind attempt to fix lcovDavid Tardon1-1/+1
Change-Id: If8d6c8da1be1e540d641f20ac90e7877feae27be
2015-08-30libvisio: fix build with boost 1.59David Tardon1-1/+2
Change-Id: Ib90425d6908bc0bfe2efb633d0215f77546e4c38
2015-08-11gbuild/config stop using VERBOSE, use only verbose=tNorbert Thiebaud1-1/+1
configure.ac was setting VERBOSE=YES/NO when really we use verbose=t or verbose= Change-Id: I47aee8d177cb2d788a62ecdbbb9cc3695c2bb299 Reviewed-on: https://gerrit.libreoffice.org/17634 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2015-07-25upload libvisio 0.1.3David Tardon2-20/+0
Change-Id: I022e036c4a27f3c3931c19b0df0e64c6c0dd25a0
2015-07-03revert inadvertedly committed hunkAndras Timar1-2/+0
Change-Id: I6b0efe5648eed68e6d69a692561a511b30bf331e
2015-07-03typo: therfore -> thereforeAndras Timar1-0/+2
Change-Id: I9dcc0ce882dfd533d98a4f71625bb85e44084283
2015-02-27For Clang -fsanitize=vptr use -fvisibility-ms-compat, not -fvisibility=hiddenStephan Bergmann2-0/+19
As discussed in b4f6b26b5a1a78fecfa95ec2eb7ac8b80495d8aa "SAL_DLLPUBLIC_RTTI for proper RTTI visibility for LLVM," RTTI-based -fsanitize= checks with Clang on Linux need special precautions to make RTTI symbols visible across DSOs. The approach taken there, as well as in 598d8194b0ea1a64e0ebba28a86c128bafa57c7c "Visible function type RTTI for Clang -fsanitize=function," was to add explicit SAL_DLLPUBLIC_RTTI annontations to relevant type definitions. However, for -fsanitize=vptr that would have required many more of those, so it appears easier to "misuse" -fsanitize-ms-compat in that case, which happens to give all RTTI symbols default visibility (while otherwise still honoring our SAL_DLLPUBLIC/PRIVATE annotations). The SAL_DLLPUBLIC_RTTI annotations from 598d8194b0ea1a64e0ebba28a86c128bafa57c7c "Visible function type RTTI for Clang -fsanitize=function" can likely be removed again. Change-Id: Ibeff7ab8c908111a7dc66ff0677204f112b24db8
2015-01-13external/libvisio: -fsanitize=float-divide-by-zeroStephan Bergmann2-0/+18
...when running CppunitTest_writerperfect_draw Change-Id: I074512f56ebb7eb054c79946c576516036bebbea
2015-01-02workaround error C2589: ´(´ : illegal token on right side of ´::´Caolán McNamara2-0/+23
Change-Id: I3654a4eb4caa3a987f6d797c9bcb577c6fd6b426
2015-01-02upload libvisio 0.1.1David Tardon4-1168/+0
Change-Id: I6587bd27d07ae39074d3c304614e3bc831afe8c8
2014-12-02error C3861: 'localtime': identifier not foundMiklos Vajna1-0/+20
Change-Id: I2c805be63bb246106c9302404ef873528d759eec
2014-12-02fdo#86664 VSD import: handle metadataMiklos Vajna2-0/+632
Change-Id: Icec212a93df10b212a9ae614b5c1ced6bf25ff7f
2014-11-25libvisio: don't invoke automakeMiklos Vajna1-0/+38
Change-Id: I89b3b175d75f27704dfcd1d11f953f0bfca5b60c
2014-11-25fdo#86664 VSDX import: handle metadataMiklos Vajna2-0/+463
Change-Id: I04a446e6b8a8352be9f091980bca31842bb7e643
2014-11-13More passing of MAKE into external configureStephan Bergmann1-1/+1
...like 2fdf78109e815a64169fdab1a8175b63ef9c64d4 "Pass MAKE into external/poppler's configure" Change-Id: I4e2f1a13d120a7398fa81884710c589bb905714d
2014-11-10external: fortunately boost no longer requires config_host.mkMichael Stahl1-1/+1
Change-Id: I8f2176500bf620cd5e4cdf434e6122b6163b3e0f
2014-08-29Pass --enable-debug also down to external/libvisioStephan Bergmann1-1/+1
Change-Id: I1ac53910390d99ad9fca72270dd3b98e281c000e
2014-07-20fdo#63756 build libxml2 with ICU supportDavid Tardon1-2/+1
Change-Id: I0523e49e640812be435ba4c97b1881ca253eb2ab
2014-06-09libabw,libfreehand,libvisio: avoid some quoting issuesMichael Stahl2-0/+15
With Win32 make there are problems with the sed expression. Change-Id: I6d7fe52a233ef88a43ee1b6e3378fcb7b0792d07
2014-05-26rebase all import libsDavid Tardon3-37/+4
Change-Id: I9e1fc613816c943f4fb1033185e34e3acf317f1d
2014-02-27normalize values of CROSS_COMPILINGMichael Stahl1-1/+1
Change-Id: I0cc43cef91e3fcd82a3558a16ab0afbd4d56b141
2014-02-12normalize values of SYSTEM_BOOSTMichael Stahl1-1/+1
Change-Id: I2fce6545d7f279e0e2d6f3ff53eee1ab82314135
2014-02-12normalize values of SYSTEM_FREETYPE, SYSTEM_LIBXML, SYSTEM_MARIADBMichael Stahl1-1/+1
Change-Id: Iffcc671ca41c5880579effe0786a3b4d3be0dab0
2013-11-14more externals need config_host for boostMichael Stahl1-1/+1
Change-Id: I0cfb09240a2e525cbd57b099b6e52eeabcc57d3f
2013-10-19fdo#70393: move libvisio to a subdir of externalKhaled Hosny6-0/+119
Change-Id: I8887369a0d355e803e31c52d7358c88d133cf89b Reviewed-on: https://gerrit.libreoffice.org/6335 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>