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 : > On 27/09/14 16:05, Zolnai Tamás wrote: > > 2014-09-27 15:23 GMT+02:00 Miklos Vajna > >: > > > > On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás > > mailto:zolnaitamas2...@gmail.com>> > wrote: > > > So

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 : > 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 fin

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. >

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 wrote: > On 27/09/14 16:05, Zolnai Tamás wrote: >> 2014-09-27 15:23 GMT+02:00 Miklos Vajna > >: >> On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás >> mailto:zolnaitamas2...@gmail.com>> wro

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: workdir/UnpackedTarball/collada2gltf

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

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 compil

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 : > 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 nec

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 : > On 27/09/14 16:05, Zolnai Tamás wrote: > > 2014-09-27 15:23 GMT+02:00 Miklos Vajna > >: > > > > On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás > > mailto:zolnaitamas2...@gmail.com>> > wrote: > > > So

RE: 4.3.x linux packages and collada support

2014-09-28 Thread Zolnai Tamás
-- Forwarded message -- From: Zolnai Tamás Date: 2014-09-28 10:49 GMT+02:00 Subject: Re: 4.3.x linux packages and collada support To: Michael Meeks 2014-09-27 19:25 GMT+02:00 Michael Meeks : > Hi Tamas, > > On Sat, 2014-09-27 at 16:05 +0200, Zolnai Tamás wrote: >

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 >: > > On Sat, Sep 27, 2014 at 08:26:38AM +0200, Zolnai Tamás > mailto:zolnaitamas2...@gmail.com>> wrote: > > So the only question is: > > Is it possible to replace the

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 i

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 i

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 : > 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? (expec

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 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. Isn't it possible to