summaryrefslogtreecommitdiff
path: root/external
AgeCommit message (Collapse)Author
2014-05-22collada2gltf: move patches to an own folderZolnai Tamás
Change-Id: Ife28845af92883d8090bb80283c59a0a9a350b32
2014-05-22collada2gltf: fix URL problemsZolnai Tamás
collada2gltf does not handle Windows pathes, the used COLLADABU::URI class can't parse native Windows pathes so call COLLADA2GLTFWriter with URL only. Other problems: collada2gltf uses the URL path for creating/opening files, instead of native ones. collada2gltf initializes _outputFilePath member in different way, sometimes as an URL path, sometimes as a native one, but handle it on the same way(as an URL). Change-Id: I104182653c07e7dcf6fc5b6e32c7031d59246b84
2014-05-22opencollada: move patches to an own folderZolnai Tamás
Change-Id: I0b60fa5b0af8224b4c517367130aa9738f071531
2014-05-22opencollada: uninitialized bool variable broke the parsingZolnai Tamás
GeneratedSaxParser::Utils:toURI() method has a bool output parameter called failed, which is assumed to be set inside the method before return. At some place the caller code does not initialize the bool variable passed to this failed parameter and so when the caller checkes the returned value it is undefined. e.g. it can be false when the method called successfully so the error handling throws away the returned URI. Change-Id: I3f90fab657a86b42bba0f492518e36c343e69d21
2014-05-22Some trivial fix for hash function signed overflow undefined behaviorStephan Bergmann
Change-Id: I41ec24a02867ba3c5bf4f39b5d79bf6a3254ad0d
2014-05-22Adapt CppUnit to our CPPUNIT_PLUGIN_EXPORTStephan Bergmann
...which mentions extern "C", so CppUnit's TestPlugInSignature must reflect that. It is a bit odd how CPPUNIT_PLUGIN_EXPORT needs to be passed into CppUnit, so probably best to keep this as a local patch for now. (Clang's -fsanitize=undefined complained about the mismatch.) Change-Id: Ied179a1afe82ceb04de4739c14cf8fadff31b80f
2014-05-22Record patch upstream notificationStephan Bergmann
Change-Id: I102160cb6fac41f5ba3caa5cb947aebbcd62681f
2014-05-22fdo#77313: coinmp: error: format not a string literal and no format argumentsMatúš Kukan
Change-Id: I044f12c4b7b28963d6d491d5e5850ddb59a564c4
2014-05-21external/clucene: Avoid InitOrderFiascoStephan Bergmann
...as reported by AddressSanitizer, where src/core/CLucene/index/IndexWriter.cpp initializes IndexWriter::MAX_TERM_LENGTH with the value of DocumentsWriter::MAX_TERM_LENGTH before the latter is initialized in src/core/CLucene/index/DocumentsWriter.cpp. But turns out that IndexWriter::MAX_TERM_LENGTH is completely unused. Change-Id: Ica01186584ec05a989a13dc58823f4751e8724e2
2014-05-21libgltf: Updated version.Jan Holesovsky
Change-Id: Ia394ff00421f495757cc2ce55e7b91bfebe715eb
2014-05-21libgltf: The FPS counting is not necessary in LibreOffice.Jan Holesovsky
And leaving it out kills the freetype dependency :-) Change-Id: I1fa33492da9d30a98014bae06aa196a508cedfe7
2014-05-21libgltf: Update to the new version.Jan Holesovsky
Change-Id: Iffc91425d4395699a1c5f18ac10f5ed065231fdf
2014-05-21care for Java 1.5 support in external packagesDouglas Mencken
apache commons-lang 3.3.1 and commons-codec 1.9 are for use only with JDK 1.6 and higher see commits: 1731f6e692bb0a07a2bca4b1b190163f209d2b9e "bump apache-commons-lang to 3.3.1" 3dad9b1019bebcc6db63a424afa146e007f768d2 "bump apache-commons-codec to 1.9" Change-Id: I3e71f6474becafe6c91836bbac5c6a8b7ca3442c Reviewed-on: https://gerrit.libreoffice.org/9312 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-05-21upgrade to python-3.3.5Thomas Arnhold
- remove now obselete patches, which were applied upstream. - Hack to get MacOS to build Change-Id: Id68e78e411efc92a46ea9e180f09c390fe5acb4a Reviewed-on: https://gerrit.libreoffice.org/9311 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2014-05-20Make CoinMP build for AndroidTor Lillqvist
(No idea whether it works, of course.) Patch the config.sub files to recognize arm-linux-androideabi. Don't build any binary programs as that fails for Android becuase we don't pass in the right C++ library to use anyway. (And those programs aren't really useful to us anyway, on any platform, I guess?) Change-Id: I70c7a527db41081a51548ce6983b6a9ae8a08bc7
2014-05-20Make CoinMP build for iOSTor Lillqvist
Change-Id: I8adff18896115d7dd0fce49916a18dc830506a36
2014-05-20Make it actually work to build GLEW for debuggingTor Lillqvist
The check in the GLEW Makefile looked at the whole $(MAKECMDGOALS), which in our case was the string 'glew.lib debug', not just 'debug'. Change-Id: I639395c944e8f2b443cbb55b451a4036b2c9d3bb
2014-05-20fix .kmz support on Windows; no idea why this int was unsignedMatúš Kukan
Change-Id: I08fa1c3956b48bcd65edb74add010fafa17bfe82
2014-05-19fdo#77891 fix python crash when in GUI mode, target WinXP with VS2012Christian Lohmaier
VS2012 did change return value of fileno function, this results in a crash when run in GUI mode (but not when launching from a shell), as python tries to access the nonexisting stdin/stdout/stderr Also explicitly target Windows XP Change-Id: Ic783713b55453f3c38b2e766a664b7f4678711de
2014-05-19No need to add -lrt for a static library.Matúš Kukan
Change-Id: I8104301e9aab6e7c732e97446030c9caf6ffec66
2014-05-18remove some external header guardsThomas Arnhold
Change-Id: I5a51dc496835f0998a3422f2a1f0f2ff8bb3c13f
2014-05-18update mysqlcppconn urlThomas Arnhold
Change-Id: I96579ed4be05cc22bc66f80bd39d7af961d47470
2014-05-16Fix typo: this is a static libraryZolnai Tamás
Change-Id: I663e8da9ee3f4b860d727abb3783e322eedd7d9f
2014-05-16Collada2gltf: add -lrt to fix compilation problemsZolnai Tamás
Change-Id: I1c0c9459cb716512dc726ee96fb811d03084aa62
2014-05-15-fsanitize=address does not like -z defsMarkus Mohrhard
Change-Id: Id2a5c3009b46f9f91706b433411ca9f9c3cb7e39 Reviewed-on: https://gerrit.libreoffice.org/9334 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2014-05-15Avoid copying of singular iteratorsStephan Bergmann
Change-Id: If873d2c369ef6458fdf3289f09802e90dc7367f2
2014-05-14Add kmz support to collada2gltf and use it.Matúš Kukan
Change-Id: I37cda0e326af00ef369c4415bcec1e03c91ce401
2014-05-14Make it compile with Apple's Clang and libc++Tor Lillqvist
Change-Id: I45feb0d715e6e823a42c7960fd87346412ebcc48
2014-05-13upgrade to libpng-1.5.18Thomas Arnhold
Change-Id: I500645d655fc7e7c850b09e47bece26e74197eb7 Reviewed-on: https://gerrit.libreoffice.org/9344 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-13update libxmlsec config.* to support ppc64leDavid Tardon
Change-Id: I4b31729481b7fd538483db5b6e39e1d80e03b3b6
2014-05-13Introduce Collada2gltf external libraryZolnai Tamás
Change-Id: I157f175ee6ea719e98ba45133f53cb4d2c3045bb
2014-05-13Introduce OpenCollada external libraryZolnai Tamás
Change-Id: I08a806b9319f7cb55be3b38a3bb9370799f6752b
2014-05-13no lcms2d.dll nowadays, there is only lcms2.dllMatúš Kukan
Change-Id: I0d6537da5d605a011bd9b4491c472b0b58fcd668
2014-05-12upgrade to lcms2-2.6Thomas Arnhold
Change-Id: Iaa5593d1593c9a54127c9019a4121af6a207d4c5 Reviewed-on: https://gerrit.libreoffice.org/9317 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-11upgrade to curl-7.36.0Thomas Arnhold
CERTINFO was included upstream: commit f6c335d63f2da025a0a3efde1fe59e3bb7189b70 Author: Patrick Monnerat <pm@datasphere.ch> Date: Wed Oct 30 11:12:06 2013 +0100 NSS: support for CERTINFO feature Change-Id: I83de2fd863f9387b83b5ebcbec70cbe6df7681d4 Reviewed-on: https://gerrit.libreoffice.org/9307 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-11upgrade to jpeg-9aThomas Arnhold
Includes some type conversion fixes. Change-Id: I84f886e9f922acd780d46baea97f2d87c5ac700b Reviewed-on: https://gerrit.libreoffice.org/9306 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-11libcmis: WaE: warning C4101: 'e' : unreferenced local variableThomas Arnhold
Change-Id: I37456029e766340450988f3d6c768bf2fd7aa973 Reviewed-on: https://gerrit.libreoffice.org/9313 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-10coverity#12093[81-94], etc. null pointer dereferenceCaolán McNamara
coverity seems to think that code execution can continue after a coverity test fails, but it will effectively halt and not trundle into the dereference of the tested-for-NULL pointer, try a [+kill] on the fail method Change-Id: I07c9a074b5681c367a31637c8af78d52a9c88d59
2014-05-09Record patch upstream notificationStephan Bergmann
Change-Id: I5aecdd1d1f19f6588cf91d8c009ffa760fae739e
2014-05-09external/redland: Missing NULStephan Bergmann
Change-Id: I388d8a37a0b7f95f21ccbbe04144f39c0fff533f
2014-05-08Make external/python3 play well with -fsanitize=addressStephan Bergmann
Change-Id: I72a9ec9569bcd74e212ad98456a76869ac213221
2014-05-08Record patch upstream notificationStephan Bergmann
Change-Id: I210b995d4a8eb3e2f00ba982f7a6cf5ecd8e6f0d
2014-05-08CLucene: Helgrind reported "pthread_mutex_destroy of a locked mutex"Stephan Bergmann
> pthread_mutex_destroy (/usr/src/debug/valgrind-3.9.0/helgrind/hg_intercepts.c:478) > lucene::util::mutex_thread::~mutex_thread() (workdir/UnpackedTarball/clucene/src/shared/CLucene/config/threads.cpp:179) > lucene::store::FSDirectory::FSIndexInput::close() (workdir/UnpackedTarball/clucene/src/core/CLucene/store/FSDirectory.cpp:225) > lucene::index::SegmentInfos::read(lucene::store::Directory*, char const*) (workdir/UnpackedTarball/clucene/src/core/CLucene/index/SegmentInfos.cpp:770) > lucene::index::IndexFileDeleter::IndexFileDeleter(lucene::store::Directory*, lucene::index::IndexDeletionPolicy*, lucene::index::SegmentInfos*, std::ostream*, lucene::index::DocumentsWriter*) (workdir/UnpackedTarball/clucene/src/core/CLucene/index/IndexFileDeleter.cpp:149) > lucene::index::IndexWriter::init(lucene::store::Directory*, lucene::analysis::Analyzer*, bool, bool, lucene::index::IndexDeletionPolicy*, bool) (workdir/UnpackedTarball/clucene/src/core/CLucene/index/IndexWriter.cpp:262) > lucene::index::IndexWriter::IndexWriter(char const*, lucene::analysis::Analyzer*, bool) (workdir/UnpackedTarball/clucene/src/core/CLucene/index/IndexWriter.cpp:158) > HelpIndexer::indexDocuments() (helpcompiler/source/HelpIndexer.cxx:55) Change-Id: I19cb9bd49b339d206a624c1f1d3dacdd909f4e25
2014-05-06libgltf: include is missing from fmod_error_handling patch, merge patchesZolnai Tamás
Change-Id: I9e0e7816e6d85cb3484105de4ce49db47db72451
2014-05-06Include <errno.h>Tor Lillqvist
Change-Id: I55a5ef14ec75095cfe6a490eedd460f21c1c9625
2014-05-06Beautify patchStephan Bergmann
Change-Id: I91f403a39a7fea23f30fb64c4f9e4c3937f0401d
2014-05-06Fix patchStephan Bergmann
Change-Id: I18608380bf89822ce402e79038f2016af17b2ead
2014-05-06Don't use extern "C" for a function which return C++ typesTor Lillqvist
Fix error: 'gltf_get_model_center_pos' has C-linkage specified, but returns user-defined type 'glm::vec3' (aka 'tvec3<mediump_float>') which is incompatible with C. I don't really understand the reason for the extern "C" use in libgltf.h. After all, the header clearly is intended to be included from C++ code (after all, the use of 'extern "C"' is unconditional and it is not valid in C), and the implementation of the functions is in C++. Also, we build libgltf as a static library, so it can't be the case that we would need to look up its symbols dynamically (when unmangled names would be better). But maybe I am missing something. Change-Id: I19f025610301f8c535178a83f4ab2e58455bad57
2014-05-06Upgrade libgltfZolnai Tamás
Change-Id: Ib7bc9562602d1d8da4082987302834ac2486d78a
2014-05-03Add clang support for boost multi_array Wshadow patch.Andrzej Hunt
ba54eca1817e84a1f1d1beec312ca87b8b059649 replaces the existing -Wshadow fixes with a GCC pragma, however we also want to be able to build with clang. Change-Id: I522f3c549adf65b98522561ab7167258dfda48b5