Re: 4.3.x linux packages and collada support

2014-09-30 Thread Zolnai Tamás
2014-09-27 20:57 GMT+02:00 Michael Stahl mst...@redhat.com: On 27/09/14 16:05, Zolnai Tamás wrote: 2014-09-27 15:23 GMT+02:00 Miklos Vajna vmik...@collabora.co.uk mailto:vmik...@collabora.co.uk: On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás zolnaitamas2...@gmail.com

Re: 4.3.x linux packages and collada support

2014-09-29 Thread Stephan Bergmann
On 09/28/2014 11:46 AM, Zolnai Tamás wrote: I tried it an it came out there are other C++11 stuff in the code. I tried to replace them, but the compiler does not help me with finding C++11 code. When I compile with --std=c++03 flag, compiler just write out: error: #error This file requires

Re: 4.3.x linux packages and collada support

2014-09-29 Thread Michael Meeks
On Sun, 2014-09-28 at 13:48 +0200, Zolnai Tamás wrote: That's the point where we should have realized that collada2gltf uses C++11 and so should not be part of 4.3, but it seems in this case our division of labor lead to information loss. Fair enough - lets see if we can't work out

Re: 4.3.x linux packages and collada support (also affects master with gcc 4.6)

2014-09-29 Thread Jan-Marek Glogowski
Hi, just want to add, that the Ubuntu 12.04 master TB build (gcc 4.6) just builds with --disable-collada. I just checked again and fixed the build errors locally: 1. It doesn't find unordered_map for whatever reason, but calls g++ with -std=gnu++0x I get:

Re: 4.3.x linux packages and collada support

2014-09-29 Thread Christian Lohmaier
Hi Michael, *, On Sat, Sep 27, 2014 at 8:57 PM, Michael Stahl mst...@redhat.com wrote: On 27/09/14 16:05, Zolnai Tamás wrote: 2014-09-27 15:23 GMT+02:00 Miklos Vajna vmik...@collabora.co.uk mailto:vmik...@collabora.co.uk: On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás

Re: 4.3.x linux packages and collada support (also affects master with gcc 4.6)

2014-09-29 Thread Jan-Marek Glogowski
Just to document my findings: Am 29.09.2014 10:41, schrieb Jan-Marek Glogowski: 1. It doesn't find unordered_map for whatever reason, but calls g++ with -std=gnu++0x GLTF/GLTFProfile.h uses std::unordered_map if we define namespace compat = std::tr; and use it, this can be resolved. 2.

Re: 4.3.x linux packages and collada support

2014-09-29 Thread Zolnai Tamás
Hi Stephan, Indeed it was a C++11 header. Thanks for the help. 2014-09-29 9:23 GMT+02:00 Stephan Bergmann sberg...@redhat.com: On 09/28/2014 11:46 AM, Zolnai Tamás wrote: I tried it an it came out there are other C++11 stuff in the code. I tried to replace them, but the compiler does not

RE: 4.3.x linux packages and collada support

2014-09-28 Thread Zolnai Tamás
-- Forwarded message -- From: Zolnai Tamás zolnaitamas2...@gmail.com Date: 2014-09-28 10:49 GMT+02:00 Subject: Re: 4.3.x linux packages and collada support To: Michael Meeks michael.me...@collabora.com 2014-09-27 19:25 GMT+02:00 Michael Meeks michael.me...@collabora.com: Hi

Re: 4.3.x linux packages and collada support

2014-09-28 Thread Zolnai Tamás
2014-09-27 20:57 GMT+02:00 Michael Stahl mst...@redhat.com: On 27/09/14 16:05, Zolnai Tamás wrote: 2014-09-27 15:23 GMT+02:00 Miklos Vajna vmik...@collabora.co.uk mailto:vmik...@collabora.co.uk: On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás zolnaitamas2...@gmail.com

Re: 4.3.x linux packages and collada support

2014-09-28 Thread Zolnai Tamás
2014-09-27 19:25 GMT+02:00 Michael Meeks michael.me...@collabora.com: Hi Tamas, On Sat, 2014-09-27 at 16:05 +0200, Zolnai Tamás wrote: It's the collada2gltf code which uses std::shared_ptr at many places so it would be much work to replace all of them with boost::shared_ptr, but actually

4.3.x linux packages and collada support

2014-09-27 Thread Zolnai Tamás
Hi there, I've got a bug (fdo#84008) which leads me to the conclusion that linux packages (4.3.1 and 4.3.2) on libreoffice download page does not contain collada support. From the symptoms I expect that it was unintentionally, caused by that collada support needs a compiler supporting

Re: 4.3.x linux packages and collada support

2014-09-27 Thread Miklos Vajna
On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás zolnaitamas2...@gmail.com wrote: So the only question is: Is it possible to replace the 4.3.1 and 4.3.2 linux packages with new ones which are compiled with newer compilers? (expecting this is the problem) To fix the bug mentioned above.

Re: 4.3.x linux packages and collada support

2014-09-27 Thread Zolnai Tamás
2014-09-27 15:23 GMT+02:00 Miklos Vajna vmik...@collabora.co.uk: On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás zolnaitamas2...@gmail.com wrote: So the only question is: Is it possible to replace the 4.3.1 and 4.3.2 linux packages with new ones which are compiled with newer

Re: 4.3.x linux packages and collada support

2014-09-27 Thread Michael Meeks
Hi Tamas, On Sat, 2014-09-27 at 16:05 +0200, Zolnai Tamás wrote: It's the collada2gltf code which uses std::shared_ptr at many places so it would be much work to replace all of them with boost::shared_ptr, but actually can be done if necessary. Interesting; we should work out what is

Re: 4.3.x linux packages and collada support

2014-09-27 Thread Michael Meeks
Hi Tamas, On Sat, 2014-09-27 at 16:05 +0200, Zolnai Tamás wrote: It's the collada2gltf code which uses std::shared_ptr at many places so it would be much work to replace all of them with boost::shared_ptr, but actually can be done if necessary. Interesting; we should work out what is

Re: 4.3.x linux packages and collada support

2014-09-27 Thread Michael Stahl
On 27/09/14 16:05, Zolnai Tamás wrote: 2014-09-27 15:23 GMT+02:00 Miklos Vajna vmik...@collabora.co.uk mailto:vmik...@collabora.co.uk: On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás zolnaitamas2...@gmail.com mailto:zolnaitamas2...@gmail.com wrote: So the only question