Re: [Interest] [Development] About Qt 4.8.3 MinGW

2012-09-24 Thread R. Reucher
Thanks, Lukas! I'll try that... On Tuesday 25 September 2012 07:59:16 Lukas Geyer wrote: > Am 24.09.2012 13:16, schrieb R. Reucher: > > Also, can someone confirm that we are seeing the same issue(s)? > > Yes, I can. 4.8.3 is broken and cannot be used to compile projects > relying on information f

Re: [Interest] About Qt 4.8.3 MinGW

2012-09-24 Thread Lukas Geyer
Am 24.09.2012 13:16, schrieb R. Reucher: > Also, can someone confirm that we are seeing the same issue(s)? Yes, I can. 4.8.3 is broken and cannot be used to compile projects relying on information from mkspecs/qconfig.pri, for example QtCreator. > To clarify what's wrong from my perspective, I q

[Interest] Managing Multiple 3D Items in a path

2012-09-24 Thread Satya Praveen Ganapathi
Hi, Could anyone please let me know how can we manage multiple 3D items in viewport Like PathView in 2D. If so, please share the example along with event handling of each 3D item. Thanks and Regards, Satya <>___ Interest mailing list Int

Re: [Interest] QNetworkRequest/Reply and HTTP chunked transfer POST

2012-09-24 Thread Thiago Macieira
On segunda-feira, 24 de setembro de 2012 15.20.48, Justin Karneges wrote: > Are there any plans to include support for POST/PUT of indeterminate length? > I believe for requests this is only possible with chunked transfer > encoding, since the client would have no other way to tell the server wher

[Interest] QNetworkRequest/Reply and HTTP chunked transfer POST

2012-09-24 Thread Justin Karneges
Hello, Today I noticed that QNetworkRequest/Reply insists on supplying a Content- Length header in the request sent to the server. This has the drawback that it is not possible to submit a POST/PUT body of indeterminate length. If a sequential QIODevice is used as the request body input and Cont

[Interest] Last week for Call for Papers for Qt DevDays North America - Deadline Sept 28

2012-09-24 Thread Amy Zinkann
The Qt DevDays Conference North America (Dec 5-7 in Santa Clara, CA) is seeking conference topics, panel discussions, end user case studies, and tutorials which would be of interest to the Qt development community. Subjects will be targeted at Qt desktop and embedded as well as mobile applications

Re: [Interest] About Qt 4.8.3 MinGW

2012-09-24 Thread R. Reucher
On Monday 17 September 2012 11:28:07 Salovaara Akseli wrote: > Qt 4.8.3 MinGW package is partially broken as we notified in the mailing > lists. We will provide a new installer to fix these issues (work in > progress). Could you also post links to the source changes when it's done? I'm able to bui

Re: [Interest] Qt5: error LNK2001: unresolved external symbol ... CPlusPlus::OverviewModel::qt_metacall

2012-09-24 Thread Loaden
Oh, I solved it now. I need to use AUTOMOC for OverviewModel.cpp. Thanks again! 2012/9/24 Loaden > Hello everyone! > > I am working to add CMake Scrips for QtCreator: > https://github.com/loaden/qtcreator/ > See wip/cmake branch. > > And now I have a problem with MSVC for a long time. > I have n

[Interest] Qt5: error LNK2001: unresolved external symbol ... CPlusPlus::OverviewModel::qt_metacall

2012-09-24 Thread Loaden
Hello everyone! I am working to add CMake Scrips for QtCreator: https://github.com/loaden/qtcreator/ See wip/cmake branch. And now I have a problem with MSVC for a long time. I have no idea yet. Any comments? [ 99%] Building CXX object > src/libs/cplusplus/CMakeFiles/CPlusPlus.dir/TypePrettyPrin

Re: [Interest] Likely qmake bug: Recursion in generated Makefile while building static library

2012-09-24 Thread Frans Klaver
On Mon, Sep 24, 2012 at 10:42 AM, Mandeep Sandhu wrote: >> Besides the above, it can be considered bad practice to _always_ install. > > Why so? People don't set an install prefix and get warnings about the install prefix not being writable to them, which is surprising because they didn't call m

Re: [Interest] Likely qmake bug: Recursion in generated Makefile while building static library

2012-09-24 Thread Mandeep Sandhu
> Don't call 'make install' from inside your makefile on your makefile. > Call it explicitly from the outside. No QMAKE_POST_LINK and > > $ qmake && make install > > yield the desired result. My project has a couple of libraries which are built in order of their deps. If libB required libA, then l

Re: [Interest] Likely qmake bug: Recursion in generated Makefile while building static library

2012-09-24 Thread Frans Klaver
On Fri, Sep 14, 2012 at 8:06 AM, Mandeep Sandhu wrote: > I've recently stumbled upon a problem where building a static lib, > with a QMAKE_POST_LINK step of "make install" results in recursion! This is basically asking for recursion. qmake creates make files that you call using make. You are now

Re: [Interest] Likely qmake bug: Recursion in generated Makefile while building static library

2012-09-24 Thread Mandeep Sandhu
Anyone got a chance to try the sample project which illustrates the issue? It'll be great if someone with Qt5 beta installed can give it a quick spin. You just need to extract the contents of the archive and run 'qmake && make' in the project dir. Thanks for your time. Regards, -mandeep On Fr